我正在研究WordPress二十十主题的儿童主题。我在WordPress中有几个页面(关于页面、推荐页面、联系页面等)。我只想回应页面内容(关于/推荐/联系人页面的实际书面内容和图片,而不是页面标题)。我知道我可以用以下内容来回应页面标题:
<?php single_post_title(); // echos About OR Testimonials OR Contact depending on the page selected ?>
但是我找不到WordPress函数只回显页面内容而不回显页面标题?我试过:
<?php get_template_part( \'content\', \'page\' ); ?>
但它没有输出任何东西。