本文整理汇总了PHP中posted_on函数的典型用法代码示例。如果您正苦于以下问题:PHP posted_on函数的具体用法?PHP posted_on怎么用?PHP posted_on使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了posted_on函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: the_ID
?>
</h3>
</div>
</div>
<div class="ym-wrapper">
<div class="ym-wbox">
<div id="mainc" class="ym-grid linearize-level">
<div class="ym-g66 ym-gl">
<div class="ym-gbox">
<article class="post white " id="post-<?php
the_ID();
?>
">
<div class="opp">
<?php
posted_on();
?>
</div>
<div class="entry">
<?php
the_content();
?>
<?php
wp_link_pages(array('before' => __('Pages: ', 'html5reset'), 'next_or_number' => 'number'));
?>
</div>
示例2: template_post_item
function template_post_item()
{
if (!in_the_loop()) {
if (WP_DEBUG === true) {
// error logging
error_log(__('you must use template_post_item() in the loop', 'wpajax'));
}
return false;
}
?>
<?php
switch (get_post_format()) {
// output different HTML based on the post type
case 'aside':
?>
<?php
break;
case 'chat':
?>
<?php
break;
case 'gallery':
?>
<?php
break;
case 'link':
?>
<?php
break;
case 'image':
?>
<?php
break;
case 'quote':
?>
<?php
break;
case 'status':
?>
<?php
break;
case 'video':
?>
<?php
break;
case 'audio':
?>
<?php
break;
default:
// marked 'standard'
?>
<?php
}
?>
<article <?php
post_class();
?>
id="post-<?php
the_ID();
?>
">
<h2><a href="<?php
the_permalink();
?>
"><?php
the_title();
?>
</a></h2>
<?php
posted_on();
?>
<?php
the_post_thumbnail();
?>
<div class="entry">
<?php
the_content();
?>
</div>
<footer class="postmetadata">
<?php
the_tags(__('Tags: ', 'wpajax'), ', ', '<br />');
?>
<?php
_e('Posted in', 'wpajax');
?>
<?php
the_category(', ');
?>
|
<?php
comments_popup_link(__('No Comments »', 'wpajax'), __('1 Comment »', 'wpajax'), __('% Comments »', 'wpajax'));
?>
//.........这里部分代码省略.........