本文整理汇总了PHP中wp_post_revision_title_expanded函数的典型用法代码示例。如果您正苦于以下问题:PHP wp_post_revision_title_expanded函数的具体用法?PHP wp_post_revision_title_expanded怎么用?PHP wp_post_revision_title_expanded使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wp_post_revision_title_expanded函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: wp_list_post_revisions
/**
* Display list of a post's revisions.
*
* Can output either a UL with edit links or a TABLE with diff interface, and
* restore action links.
*
* @since 2.6.0
*
* @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global $post.
* @param string $type 'all' (default), 'revision' or 'autosave'
*/
function wp_list_post_revisions($post_id = 0, $type = 'all')
{
if (!($post = get_post($post_id))) {
return;
}
// $args array with (parent, format, right, left, type) deprecated since 3.6
if (is_array($type)) {
$type = !empty($type['type']) ? $type['type'] : $type;
_deprecated_argument(__FUNCTION__, '3.6.0');
}
if (!($revisions = wp_get_post_revisions($post->ID))) {
return;
}
$rows = '';
foreach ($revisions as $revision) {
if (!current_user_can('read_post', $revision->ID)) {
continue;
}
$is_autosave = wp_is_post_autosave($revision);
if ('revision' === $type && $is_autosave || 'autosave' === $type && !$is_autosave) {
continue;
}
$rows .= "\t<li>" . wp_post_revision_title_expanded($revision) . "</li>\n";
}
echo "<div class='hide-if-js'><p>" . __('JavaScript must be enabled to use this feature.') . "</p></div>\n";
echo "<ul class='post-revisions hide-if-no-js'>\n";
echo $rows;
echo "</ul>";
}
开发者ID:atimmer,项目名称:wordpress-develop-mirror,代码行数:40,代码来源:post-template.php
示例2: wp_list_post_revisions
/**
* Display list of a post's revisions.
*
* Can output either a UL with edit links or a TABLE with diff interface, and
* restore action links.
*
* @package WordPress
* @subpackage Post_Revisions
* @since 2.6.0
*
* @uses wp_get_post_revisions()
* @uses wp_post_revision_title_expanded()
* @uses get_edit_post_link()
* @uses get_the_author_meta()
*
* @param int|object $post_id Post ID or post object.
* @param string $type 'all' (default), 'revision' or 'autosave'
* @return null
*/
function wp_list_post_revisions($post_id = 0, $type = 'all')
{
if (!($post = get_post($post_id))) {
return;
}
// $args array with (parent, format, right, left, type) deprecated since 3.6
if (is_array($type)) {
$type = !empty($type['type']) ? $type['type'] : $type;
_deprecated_argument(__FUNCTION__, '3.6');
}
if (!($revisions = wp_get_post_revisions($post->ID))) {
return;
}
$rows = '';
foreach ($revisions as $revision) {
if (!current_user_can('read_post', $revision->ID)) {
continue;
}
$is_autosave = wp_is_post_autosave($revision);
if ('revision' === $type && $is_autosave || 'autosave' === $type && !$is_autosave) {
continue;
}
$rows .= "\t<li>" . wp_post_revision_title_expanded($revision) . "</li>\n";
}
echo "<ul class='post-revisions'>\n";
echo $rows;
// if the post was previously restored from a revision
// show the restore event details
if ($restored_from_meta = get_post_meta($post->ID, '_post_restored_from', true)) {
$author = get_user_by('id', $restored_from_meta['restored_by_user']);
/* translators: revision date format, see http://php.net/date */
$datef = _x('j F, Y @ G:i:s', 'revision date format');
$date = date_i18n($datef, strtotime($restored_from_meta['restored_time']));
$time_diff = human_time_diff($restored_from_meta['restored_time']);
?>
<hr />
<div id="revisions-meta-restored">
<?php
printf(__('Previously restored by %1$s %2$s, %3$s ago (%4$s)'), get_avatar($author->ID, 24), $author->display_name, $time_diff, $date);
?>
</div>
<?php
echo "</ul>";
}
}
开发者ID:jcsilkey,项目名称:CodeReviewSecurityRepo,代码行数:64,代码来源:post-template.php
注:本文中的wp_post_revision_title_expanded函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论