我知道你可以用
add_filter( \'single_template\', \'modify_page_template\' );
function modify_page_template($single_template) {
global $post;
if ($post->post_type == \'post\' || $post->post_type == \'page\') {
$single_template = dirname( __FILE__ ) . \'/post-type-page-or-post.php\';
}
return $single_template;
}
要替换默认主题并添加自定义字段项,是否有任何方法可以在不修改整个主题的情况下执行此操作,而只需将元框数据附加到内容中?