사람들이 테마 폴더를 건드리지 않고 사용할 수 있도록 사용자 정의 게시물 유형을 플러그인으로 제공하고 싶습니다. 그러나 single-movies.php와 같은 사용자 정의 포스트 유형 템플릿은 테마 폴더에 있습니다. 플러그인 폴더에서 WP가 single-movies.php를 확인하도록하는 방법이 있습니까? 파일러 계층에 함수 연결 ? 또는 get_template_directory (); ?
사람들이 테마 폴더를 건드리지 않고 사용할 수 있도록 사용자 정의 게시물 유형을 플러그인으로 제공하고 싶습니다. 그러나 single-movies.php와 같은 사용자 정의 포스트 유형 템플릿은 테마 폴더에 있습니다. 플러그인 폴더에서 WP가 single-movies.php를 확인하도록하는 방법이 있습니까? 파일러 계층에 함수 연결 ? 또는 get_template_directory (); ?
답변:
single_template
필터 후크 를 사용할 수 있습니다 .
/* Filter the single_template with our custom function*/
add_filter('single_template', 'my_custom_template');
function my_custom_template($single) {
global $post;
/* Checks for single template by post type */
if ( $post->post_type == 'POST TYPE NAME' ) {
if ( file_exists( PLUGIN_PATH . '/Custom_File.php' ) ) {
return PLUGIN_PATH . '/Custom_File.php';
}
}
return $single;
}
get_query_template()
함수에 의해 호출됩니다 . 변수 후크이므로 첫 번째 부분 {$type}_template
은 해당 함수에 전달되는 매개 변수에 따라 변경됩니다. 일반적인 것들에 대해서는 wp-includes / template.php 를보십시오
add_filter( 'single-movies_template', 'my_custom_template' );
연결된 자습서에서와 같이 @Bainternet의 답변보다 간단한 접근법을 제안합니다 . (이 질문은 새로운 답변으로 마감되었으므로 독자적으로 추가 할 수 없습니다.)
PLUGIN_PATH
와 plugin_dir_path( __FILE__ )
다음 파일 이름에서 첫 번째 슬래시를 제거합니다. 전체 경로는 다음과 같습니다.return plugin_dir_path( __FILE__ ) . 'Custom_File.php';
더 깨끗하고 짧은 버전.
function load_movie_template( $template ) {
global $post;
if ( 'movie' === $post->post_type && locate_template( array( 'single-movie.php' ) ) !== $template ) {
/*
* This is a 'movie' post
* AND a 'single movie template' is not found on
* theme or child theme directories, so load it
* from our plugin directory.
*/
return plugin_dir_path( __FILE__ ) . 'single-movie.php';
}
return $template;
}
add_filter( 'single_template', 'load_movie_template' );
@Brainternet answer에 테마 폴더의 사용자 정의 게시물 유형 특정 템플릿에 대한 검사를 추가했습니다.
function load_cpt_template($template) {
global $post;
// Is this a "my-custom-post-type" post?
if ($post->post_type == "my-custom-post-type"){
//Your plugin path
$plugin_path = plugin_dir_path( __FILE__ );
// The name of custom post type single template
$template_name = 'single-my-custom-post-type.php';
// A specific single template for my custom post type exists in theme folder? Or it also doesn't exist in my plugin?
if($template === get_stylesheet_directory() . '/' . $template_name
|| !file_exists($plugin_path . $template_name)) {
//Then return "single.php" or "single-my-custom-post-type.php" from theme directory.
return $template;
}
// If not, return my plugin custom post type template.
return $plugin_path . $template_name;
}
//This is not my custom post type, do nothing with $template
return $template;
}
add_filter('single_template', 'load_cpt_template');
이제 플러그인 사용자가 템플리트를 플러그인에서 테마로 복사하여 대체 할 수 있습니다.
이 예제에서 템플리트는 플러그인 및 테마의 루트 디렉토리에 있어야합니다.
locate_template
대신 사용 get_stylesheet_directory
(여기 : code.tutsplus.com/tutorials/… ).
플러그인에 사용하는 훨씬 좋은 방법이 있습니다.
@campsjos가 여기 에 언급 했듯이 파일 존재 확인 대신
locate_template
테마 대체 템플릿 파일을 체크인하는지 확인할 수 있습니다. 어느 것이 분명합니다.
function my_plugin_templates() {
if (is_singular('movie')) {
if (file_exists($this->template_dir . 'single-movie.php')) {
return $this->template_dir . 'single-movie.php';
}
}
}
template_include
위 코드를로드 하려면 필터 후크를 사용하십시오 .
add_filter('template_include' , 'my_plugin_templates');
이 페이지 덕분에 나는 같은 질문을 해결할 수있었습니다.
참고로, 이것은 내가 끝내는 것입니다.
function pluginName_myposttype_single_template($single_template) {
$myposttype_template = PLUGIN_DIR . 'templates/single-myposttype.php';
return get_post_type() === 'myposttype' && file_exists($myposttype_template) ? $myposttype_template : $single_template;
}
add_filter('single_template', 'pluginName_myposttype_single_template');
{$ type} _template 필터 후크가 작동하지 않았습니다.
function pluginName_myposttype_single_template($single_template) {
$myposttype_template = PLUGIN_DIR . 'templates/single-myposttype.php';
if ( file_exists($myposttype_template) ) {
$single_template = $myposttype_template;
}
return $single_template;
}
add_filter('single-myposttype_template', 'pluginName_myposttype_single_template');
위의 대답은 훌륭하지만 $ single var를 확인하면 테마 / 자식 테마가 제공 한 템플릿이 템플릿을 재정의 할 수 있습니다.
/* Filter the single_template with our custom function*/
add_filter('single_template', 'your_cpt_custom_template');
function your_cpt_custom_template( $single ) {
global $wp_query, $post;
/* Checks for single template by post type */
if ( !$single && $post->post_type == 'cpt' ) {
if( file_exists( plugin_dir_path( __FILE__ ) . 'single-cpt.php' ) )
return plugin_dir_path( __FILE__ ) . 'single-cpt.php';
}
return $single;
}