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


PHP st_before_content函数代码示例

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


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

示例1: extract

<?php

/**
 * Template Name: bbPress - Statistics
 *
 * @package bbPress
 * @subpackage Theme
 */
// Get the statistics and extract them for later use in this template
// @todo - remove variable references
extract(bbp_get_statistics(), EXTR_SKIP);
get_header();
st_before_content($columns = '');
do_action('bbp_template_notices');
while (have_posts()) {
    the_post();
    ?>

	<div id="bbp-statistics" class="bbp-statistics">
		<h1 class="entry-title"><?php 
    the_title();
    ?>
</h1>
		<div class="entry-content">

			<?php 
    get_the_content() ? the_content() : _e('<p>Here are the statistics and popular topics of our forums.</p>', 'bbpress');
    ?>

			<dl role="main">
开发者ID:besimhu,项目名称:legacy,代码行数:30,代码来源:page-forum-statistics.php

示例2: extract

<?php

/**
 * Template Name: bbPress - Statistics
 *
 * @package bbPress
 * @subpackage Theme
 */
// Get the statistics and extract them for later use in this template
// @todo - remove variable references
extract(bbp_get_statistics(), EXTR_SKIP);
get_header();
st_before_content($columns);
do_action('bbp_template_notices');
while (have_posts()) {
    the_post();
    ?>

	<div id="bbp-statistics" class="bbp-statistics">
		<h1 class="entry-title"><?php 
    the_title();
    ?>
</h1>
		<div class="entry-content">

			<?php 
    get_the_content() ? the_content() : _e('<p>Here are the statistics and popular topics of our forums.</p>', 'bbpress');
    ?>

			<dl role="main">
开发者ID:JMulligan,项目名称:skeleton_wp,代码行数:30,代码来源:page-forum-statistics.php

示例3: get_header

<?php

/**
 * The template for displaying attachments.
 *
 * @package Skeleton WordPress Theme Framework
 * @subpackage skeleton
 * @author Simple Themes - www.simplethemes.com
 */
get_header();
st_before_content('sixteen');
/* Run the loop to output the attachment.
 * If you want to overload this in a child theme then include a file
 * called loop-attachment.php and that will be used instead.
 */
get_template_part('loop', 'attachment');
st_after_content();
// get_sidebar();
get_footer();
开发者ID:besimhu,项目名称:legacy,代码行数:19,代码来源:attachment.php


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