我已经准确地创建了我的自定义帖子类型插件&;它在管理面板上运行良好。
我已经为这个插件设置了一个使用自定义模板的过滤器
add_filter( \'template_include\', \'include_template_function\', 1 );
function include_template_function( $template_path ) {
if ( get_post_type() == \'employees\' ) {
// if ( is_single() ) {
// checks if the file exists in the theme first,
// otherwise serve the file from the plugin
if ( $theme_file = locate_template( array ( \'employee-template.php\' ) ) ) {
$template_path = $theme_file;
} else {
$template_path = plugin_dir_path( __FILE__ ) . \'employee-template.php\';
// }
}
}
return $template_path;
}
但我找不到可以在网站上显示自定义字段内容的确切查询。我想要一个存档页,但我会让它有3列。我想显示自定义字段内容,而不是正文内容。