0
WordPress에 다음과 같이 이름이 지정된 사용자 정의 게시 유형을 추가 할 것입니다 :
CPTUI 플러그인에 의해 사용자 정의 게시 유형을 만들고 붙여 넣기도했습니다 Funtion.php의 마지막에 "코드 가져 오기"메뉴에서 CPTUI에서 제공하는 코드 : 문제가 멀티미디어입니다새로운 "사용자 정의 게시물 템플릿"이 새 게시물 템플릿 목록에로드되지 않을 수 있습니다
<?php /* Template Name Posts: MultiMedia */ ?>
<?php get_header(); ?>
<div class="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
MultiMedia post type is working!
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- end #main -->
<?php get_footer(); ?>
: 다음
function cptui_register_my_cpts_multimedia() {
/**
* Post Type: MultiMedia.
*/
$labels = array(
"name" => __('MultiMedia', ''),
"singular_name" => __('MultiMedia', ''),
.
.
.
"attributes" => __('MultiMedia Attributes', ''),
"parent_item_colon" => __('Parent MultiMedia:', ''),
);
$args = array(
"label" => __('MultiMedia', ''),
"labels" => $labels,
.
.
.
"supports" => array("title", "editor", "thumbnail", "custom-fields"),
"taxonomies" => array("category", "post_tag"),
);
register_post_type("multimedia", $args);
}
add_action('init', 'cptui_register_my_cpts_multimedia');
은 내가 가진 테마 폴더에 multimedia.php을 생성 드롭 다운 목록에 없습니다. 예상대로 NewPost 사이드 바에서
이 올바른 방법입니까?
도움이 내게 당신을 위해 트릭을 할해야 <?php /* Template name: MultiMedia */ ?>
에 <?php /* Template Name Posts: MultiMedia */ ?>
에서이
가 고마워요