當前位置: 首頁>>代碼示例>>PHP>>正文


PHP posted_on函數代碼示例

本文整理匯總了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>
開發者ID:jhouedanou,項目名稱:template-wordpress-civ,代碼行數:30,代碼來源:page.php

示例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 &#187;', 'wpajax'), __('1 Comment &#187;', 'wpajax'), __('% Comments &#187;', 'wpajax'));
    ?>
//.........這裏部分代碼省略.........
開發者ID:arniebradfo,項目名稱:Ajax-Boilerplate-Wordpress-Theme,代碼行數:101,代碼來源:template_parts.php


注:本文中的posted_on函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。