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


PHP cfct_loop函数代码示例

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


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

示例1: while

if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>

	<h1><?php 
        printf(__('Posts by: <a href="%s">%s</a>', 'carrington-jam'), get_author_posts_url(get_the_author_meta('id')), get_the_author_meta('display_name'));
        ?>
</h1>

<?php 
        $bio = get_the_author_meta('description');
        if (!empty($bio)) {
            ?>

		<h2><?php 
            printf(__('About %s', 'carrington-jam'), get_the_author_meta('display_name'));
            ?>
</h2>
	
<?php 
            echo cfct_basic_content_formatting($bio);
        }
        break;
    }
}
rewind_posts();
cfct_loop();
cfct_misc('nav-posts');
get_sidebar();
get_footer();
开发者ID:rascoop,项目名称:carrington,代码行数:31,代码来源:author.php

示例2: cfct_banner

<?php

/**
 * @package anno
 * This file is part of the Annotum theme for WordPress
 * Built on the Carrington theme framework <http://carringtontheme.com>
 *
 * Copyright 2008-2015 Crowd Favorite, Ltd. All rights reserved. <http://crowdfavorite.com>
 * Released under the GPL license
 * http://www.opensource.org/licenses/gpl-license.php
 */
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) {
    die;
}
if (CFCT_DEBUG) {
    cfct_banner(__FILE__);
}
get_header();
?>
<div id="main-body" class="clearfix">
	<?php 
echo '<div id="content">', cfct_loop(), '</div>';
?>
</div><!-- #main-content -->
<div id="main-sidebar" class="clearfix">
	<?php 
get_sidebar();
?>
</div><!-- #main-sidebar -->
<?php 
get_footer();
开发者ID:dregula,项目名称:Annotum,代码行数:31,代码来源:pages-default.php


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