PHP WordPress包含页面或在另一个页面中发布或通过模板发布

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress包含页面或在另一个页面中发布或通过模板发布相关的知识,希望对你有一定的参考价值。

//Add to functions.php
function show_post($path) {
  $post = get_page_by_path($path);
  $content = apply_filters('the_content', $post->post_content);
  echo $content;
}

//add to your page/post/template file
<?php show_post('about');  // Shows the content of the "About" page. ?>
<?php show_post('category/postname');  // Shows content of a Post page. ?>

以上是关于PHP WordPress包含页面或在另一个页面中发布或通过模板发布的主要内容,如果未能解决你的问题,请参考以下文章