本文整理匯總了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'));
?>
//.........這裏部分代碼省略.........