다음과 같이 사용자 정의 게시물 유형 "portfolio"를 작성했습니다.
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
//'menu_icon' => get_stylesheet_directory_uri() . '/article16.png',
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 4,
'taxonomies' => array('post_tag','category'),
'supports' => array('title','editor','comments','trackbacks','revisions','custom-fields','page-attributes','thumbnail', 'excerpt', 'tags')
);
register_post_type( 'portfolio' , $args );
그리고 액션이있는 다른 사용자 정의 필드가 있습니다.
add_action("admin_init", "admin_init");
function admin_init(){ // add_meta_box( $id, $title, $callback, $page, $context, $priority );
add_meta_box("media", "Media Type", "media", "portfolio", "side", "high");
add_meta_box("map_meta", "Mapping Info", "map_meta", "portfolio", "normal", "high");
}
한 번이 작업을 수행했지만이 페이지의 스크립트를로드하도록 파악할 수는 없습니다. 지금은 그냥 다음 wp_enqueue_script
과 같은 나머지를 가지고 있습니다 .
function my_init() {
if (!is_admin()) {
....
}
if (is_admin()) {
wp_register_script('Gmaps', 'http://maps.google.com/maps/api/js?sensor=false', false, '3.0', false);
wp_enqueue_script('Gmaps');
wp_register_style('admin_js', get_bloginfo('template_directory') . '/admin.js');
wp_enqueue_script('admin_js');
wp_register_script('Zmaps', get_bloginfo('template_directory') .'/scripts/maps.js', array('Gmaps'), '1.0', true);
wp_enqueue_script('Zmaps');
}
}
add_action('wp_enqueue_scripts', 'my_init');
그러나 이것 중 어느 것도 나를 위해로드되지 않습니다. 이 스크립트를 관리자 페이지에 어떻게로드합니까? 더 나은 방법은 포트폴리오 사용자 정의 게시물 유형의 편집 페이지를 위해 특별히로드하는 방법은 무엇입니까?