在里面functions.php
子主题包括template-tags.php
从父主题:
require_once get_theme_file_path( \'../parent-theme/inc/template-tags.php\' );
在子主题中
template-tags.php
删除父操作并添加替换它的子操作:
remove_action( \'tag\', \'parent-function\', 0 );
add_action( \'tag\', \'new-child-function\', 10 );