복붙노트

[WORDPRESS] 사용자 지정 택 소노 미 템플릿은 기본적으로 선택되지 않습니다

WORDPRESS

사용자 지정 택 소노 미 템플릿은 기본적으로 선택되지 않습니다

해결법


  1. 1.이 패션에서 사용자 정의 게시물 유형을 만드는 것이 좋습니다. flush_rewrite_rules ()는 404를 치료할 것입니다. Codex를 참조하십시오 이 예제는 플러그인의 활성화에 새로운 사용자 정의 게시물 유형을 만드는 것입니다.

    이 패션에서 사용자 정의 게시물 유형을 만드는 것이 좋습니다. flush_rewrite_rules ()는 404를 치료할 것입니다. Codex를 참조하십시오 이 예제는 플러그인의 활성화에 새로운 사용자 정의 게시물 유형을 만드는 것입니다.

    add_action( 'init', 'my_cpt_init' );
    function my_cpt_init() {
        register_post_type( ... );
    }
    
    function my_rewrite_flush() {
        // First, we "add" the custom post type via the above written function.
        // Note: "add" is written with quotes, as CPTs don't get added to the DB,
        // They are only referenced in the post_type column with a post entry, 
        // when you add a post of this CPT.
        my_cpt_init();
    
        // ATTENTION: This is *only* done during plugin activation hook in this example!
        // You should *NEVER EVER* do this on every page load!!
        flush_rewrite_rules();
    }
    register_activation_hook( __FILE__, 'my_rewrite_flush' );
    
  2. from https://stackoverflow.com/questions/32088981/custom-taxonomy-template-is-not-selected-by-default by cc-by-sa and MIT license