[WORDPRESS] 사용자 지정 택 소노 미 템플릿은 기본적으로 선택되지 않습니다
WORDPRESS사용자 지정 택 소노 미 템플릿은 기본적으로 선택되지 않습니다
해결법
-
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' );
from https://stackoverflow.com/questions/32088981/custom-taxonomy-template-is-not-selected-by-default by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] WordPress에서 검색어 (태그 / 아카이브) 표시 (0) | 2020.11.25 |
---|---|
[WORDPRESS] Woocommerce는 로그인하지 않는 한 장바구니에 제품을 추가 할 수 없습니다. (0) | 2020.11.25 |
[WORDPRESS] Fishpig : Autologin은 index.php 때문에 인증을 작동하지 않습니다. (0) | 2020.11.25 |
[WORDPRESS] 사용자 정의 데이터베이스 테이블 (WordPress 테이블이 아닌)을 어떻게 검색합니까? (0) | 2020.11.25 |
[WORDPRESS] Composer Autoloader는 로컬에서 작동하지만 서버에서 작동하지 않습니다 (0) | 2020.11.25 |