Child 主题 template-tags.php
Child themed template-tags.php
我使用的主题有一个 inc/template-tags.php
文件,我
需要用 child template-tags.php
覆盖
将文件添加到我的 child 基于 inc/ 文件夹和根 child 主题文件夹的主题文件夹似乎没有覆盖 parent 文件。
添加include( get_stylesheet_directory() . '/inc/template-tags.php' );
我的 child functions.php
导致 WordPress 白屏死机。
有人知道怎么做吗?
答案是在子 functions.php
中使用以下内容
if( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}
我使用的主题有一个 inc/template-tags.php
文件,我
需要用 child template-tags.php
覆盖将文件添加到我的 child 基于 inc/ 文件夹和根 child 主题文件夹的主题文件夹似乎没有覆盖 parent 文件。
添加include( get_stylesheet_directory() . '/inc/template-tags.php' );
我的 child functions.php
导致 WordPress 白屏死机。
有人知道怎么做吗?
答案是在子 functions.php
if( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}