当前位置: 首页>>代码示例>>PHP>>正文


PHP foundationpress_entry_meta函数代码示例

本文整理汇总了PHP中foundationpress_entry_meta函数的典型用法代码示例。如果您正苦于以下问题:PHP foundationpress_entry_meta函数的具体用法?PHP foundationpress_entry_meta怎么用?PHP foundationpress_entry_meta使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了foundationpress_entry_meta函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: the_ID

the_ID();
?>
" <?php 
post_class();
?>
>
	<header>
		<h2 style="text-align:center;"><a href="<?php 
the_permalink();
?>
"><?php 
the_title();
?>
</a></h2>
		<?php 
foundationpress_entry_meta();
?>
	</header>
	<div class="entry-content">
		<?php 
the_excerpt();
?>
	</div>
	<footer>
		<div class="tag-list">
			<?php 
$tag = get_the_tags();
if ($tag) {
    ?>
<p><?php 
    the_tags();
开发者ID:jimlongo56,项目名称:spadina_site,代码行数:31,代码来源:content.php

示例2: get_header

 * @subpackage FoundationPress
 * @since FoundationPress 1.0
 */

get_header(); ?>

<div class="row">
	<div class="small-12 large-8 columns" role="main">

	<?php do_action( 'foundationpress_before_content' ); ?>

	<?php while ( have_posts() ) : the_post(); ?>
		<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
			<header>
				<h1 class="entry-title"><?php the_title(); ?></h1>
				<?php foundationpress_entry_meta(); ?>
			</header>
			<?php do_action( 'foundationpress_post_before_entry_content' ); ?>
			<div class="entry-content">

			<?php if ( has_post_thumbnail() ) : ?>
				<div class="row">
					<div class="column">
						<?php the_post_thumbnail( '', array('class' => 'th') ); ?>
					</div>
				</div>
			<?php endif; ?>

			<?php the_content(); ?>
			</div>
			<footer>
开发者ID:chawlie,项目名称:karlmonger,代码行数:31,代码来源:single.php


注:本文中的foundationpress_entry_meta函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。