仅回显页面内容(不同时显示页面标题和页面内容)

时间:2015-03-08 作者:user1822824

我正在研究WordPress二十十主题的儿童主题。我在WordPress中有几个页面(关于页面、推荐页面、联系页面等)。我只想回应页面内容(关于/推荐/联系人页面的实际书面内容和图片,而不是页面标题)。我知道我可以用以下内容来回应页面标题:

<?php single_post_title(); // echos About OR Testimonials OR Contact depending on the page selected ?>
但是我找不到WordPress函数只回显页面内容而不回显页面标题?我试过:

<?php get_template_part( \'content\', \'page\' ); ?>
但它没有输出任何东西。

2 个回复
SO网友:Pieter Goosen

你可以利用the_page_content() outside 仅显示页面内容的循环,其中the_page_content() 由以下函数支持

function the_page_content() {
    global $post;

    $content = \'\';
    if ( is_page() ) {
        $content .= apply_filters( \'the_content\', $post->post_content );
    }
    echo $content;
}
在循环内部,您可以使用the_content();

SO网友:Jason Murray

the_content();
我想这就是你要找的?

结束

相关推荐

Execute php in pages

我需要在wordpress中执行我的个人php代码来打印mysql数据库中的数据。我只能在页面上执行。我的想法是创建一个文件页pagename。php,复制页面主体。php模板并更改此代码:<?php while ( have_posts() ): the_post(); ?> <article <?php post_class(\'group\'); ?>> <?php get_temp