web*_*x l 3 php wordpress templatetags
我使用的主题有一个inc/template-tags.php
文件,我
需要用子模板覆盖 - tags.php
将文件添加到我的子主题文件夹中,基于inc/folder和root子主题文件夹似乎都不会覆盖父文件.
添加include( get_stylesheet_directory() . '/inc/template-tags.php' );
到我的孩子functions.php
导致WordPress白屏死机.
有人知道怎么做吗?
回答是在孩子里面使用以下内容 functions.php
if( ! function_exists(twentyfourteen_post_nav) ) { function twentyfourteen_post_nav() { DUMP MY EDITED CODE HERE }}