本文整理汇总了PHP中thematic_abovepost函数的典型用法代码示例。如果您正苦于以下问题:PHP thematic_abovepost函数的具体用法?PHP thematic_abovepost怎么用?PHP thematic_abovepost使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了thematic_abovepost函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: thematic_tag_loop
/**
* The Tag loop
*
* Located in tag.php
*
* Override: childtheme_override_tag_loop
*/
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
// action hook for insterting content above #post
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
?>
" <?php
post_class();
?>
>
<?php
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
// action hook for insterting content below #post
thematic_belowpost();
}
}
示例2: thematic_abovecontainer
thematic_abovecontainer();
?>
<div id="container">
<?php
thematic_abovecontent();
?>
<div id="content">
<?php
// calling the widget area 'page-top'
get_sidebar('page-top');
the_post();
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
echo '" ';
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
// creating the post header
thematic_postheader();
示例3: thematic_single_post_xhtml
/**
* The single posts xhtml loop
*
* @since 2.0.0
*/
function thematic_single_post_xhtml()
{
// action hook for insterting content above #post
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
?>
" <?php
post_class();
?>
>
<?php
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
<?php
wp_link_pages(array('before' => sprintf('<div class="page-link">%s', __('Pages:', 'thematic')), 'after' => '</div>'));
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
// action hook for insterting content below #post
thematic_belowpost();
}
示例4: thematic_tag_loop
/**
* The Tag loop
*
* Located in tag.php
*
* Override: childtheme_override_tag_loop
*/
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
// action hook for insterting content above #post
thematic_abovepost();
?>
<?php
echo '<div id="post-' . get_the_ID() . '" ';
// Checking for defined constant to enable Thematic's post classes
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
// action hook for insterting content below #post
thematic_belowpost();
}
}
示例5: thematic_tag_loop
function thematic_tag_loop()
{
while (have_posts()) {
the_post();
thematic_abovepost();
?>
<div id="post-<?php
the_ID();
echo '" ';
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
thematic_postheader();
?>
<div class="entry-content">
<?php
thematic_content();
?>
</div><!-- .entry-content -->
<?php
thematic_postfooter();
?>
</div><!-- #post -->
<?php
thematic_belowpost();
}
}