本文整理汇总了PHP中wptouch_the_post函数的典型用法代码示例。如果您正苦于以下问题:PHP wptouch_the_post函数的具体用法?PHP wptouch_the_post怎么用?PHP wptouch_the_post使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wptouch_the_post函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wptouch_fdn_is_custom_latest_posts_page
function wptouch_fdn_is_custom_latest_posts_page()
{
global $post;
$settings = foundation_get_settings();
if ($settings->latest_posts_page == 'none') {
return false;
} else {
rewind_posts();
wptouch_the_post();
rewind_posts();
return apply_filters('foundation_is_custom_latest_posts_page', $settings->latest_posts_page == $post->ID);
}
}
示例2: get_header
?>
<?php
} else {
?>
<?php
get_header();
?>
<div id="content">
<?php
if (wptouch_have_posts()) {
?>
<?php
wptouch_the_post();
?>
<?php
get_template_part('page-content');
?>
<?php
}
?>
</div> <!-- content -->
<?php
if (wptouch_fdn_show_comments_on_pages() && (comments_open() || have_comments())) {
?>
<div id="comments">
<?php
comments_template();