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


PHP twentythirteen_entry_meta函數代碼示例

本文整理匯總了PHP中twentythirteen_entry_meta函數的典型用法代碼示例。如果您正苦於以下問題:PHP twentythirteen_entry_meta函數的具體用法?PHP twentythirteen_entry_meta怎麽用?PHP twentythirteen_entry_meta使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了twentythirteen_entry_meta函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: the_permalink

    the_permalink();
    ?>
" rel="bookmark"><?php 
    the_title();
    ?>
</a>
		</h1>
		<?php 
}
// is_single()
?>


		<div class="entry-meta">
			<?php 
twentythirteen_entry_meta();
?>

			<?php 
edit_post_link(__('Edit', 'twentythirteen'), '<span class="edit-link">', '</span>');
?>

		</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<?php 
if (is_search()) {
    // Only display Excerpts for Search
    ?>

	<div class="entry-summary">
開發者ID:joshquila,項目名稱:demo2-youse,代碼行數:31,代碼來源:content.php

示例2: sprintf

	</header><!-- .entry-header -->

	<div class="entry-content">
		<?php
			/* translators: %s: Name of current post */
			the_content( sprintf(
				__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
				the_title( '<span class="screen-reader-text">', '</span>', false )
			) );

			wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );
		?>
	</div><!-- .entry-content -->

	<footer class="entry-meta">
		<?php twentythirteen_entry_meta(); ?>

		<?php if ( comments_open() && ! is_single() ) : ?>
		<span class="comments-link">
			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
		</span><!-- .comments-link -->
		<?php endif; // comments_open() ?>
		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>

		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
			<?php get_template_part( 'author-bio' ); ?>
		<?php endif; ?>
	</footer><!-- .entry-meta -->
</article><!-- #post -->
>>>>>>> b875702c9c06ab5012e52ff4337439b03918f453
開發者ID:pombredanne,項目名稱:ArcherSys,代碼行數:30,代碼來源:content-image.php


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