php WP子页面模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP子页面模板相关的知识,希望对你有一定的参考价值。

<?php

/* 
 * There is no specific template for child pages, but it can be implemented easily with
 * get_template_part().
 *
 * 1. Create a file named "content-child.php"
 * 2. Create a file named "content.php"
 * 3. Use the following code below to grab the appropriate template
 */

if( $post->post_parent !== 0 ) {
    get_template_part('content', 'child');
} else {
    get_template_part('content');
}
?>

以上是关于php WP子页面模板的主要内容,如果未能解决你的问题,请参考以下文章

php WP - 页面模板

php WP - 主题 - Shoptimizer - 没有标题页面模板

php WP - 主题 - Shoptimizer - 没有标题页面模板

PHP 如何:在WP /论文中创建其他页面模板

WP主题模板制作修改教程

php 在WP管理员中隐藏某些页面模板