我使用的主题有一个inc/template-tags.php文件需要用子template-tags.php覆盖将文件添加到我的子主题文件夹(包括基于inc/文件夹和根子主题文件夹)似乎不会覆盖父文件。将include( get_stylesheet_directory() . '/inc/template-tags.php' );添加到我的孩子functions.php导致WordPress白色死亡。有人知道怎么做吗?
inc/template-tags.php
include( get_stylesheet_directory() . '/inc/template-tags.php' );
functions.php
kokeuurv1#
答案是在使用下面的内部子functions.phpif( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}
if( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}
1条答案
按热度按时间kokeuurv1#
答案是在使用下面的内部子
functions.php
if( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}