मैंने कुछ इस तरह से एक कस्टम पोस्ट टाइप "पोर्टफोलियो" बनाया है:
$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');
लेकिन इसमें से कोई भी मेरे लिए लोड नहीं हो रहा है। मैं इन स्क्रिप्ट को व्यवस्थापक पृष्ठों में कैसे लोड कर सकता हूं? बेहतर है कि मैं उन्हें विशेष रूप से पोर्टफोलियो कस्टम पोस्ट प्रकार के संपादन पृष्ठों के लिए कैसे लोड कर सकता हूं?