Wordpress:custom_post_type图片上传

时间:2010-08-24 19:10:52

标签: php wordpress wordpress-plugin

任何人都可以帮我添加图片上传字段。这是我目前的代码!

    add_action('init', 'pictures_portofolio');

function pictures_portofolio() {
    $args = array(
        'label' => __('Bilder'),
        'singular_label' => __('Bilder'),
        'public' => true,
        'show_ui' => true,
        'capability_type' => 'post',
        'hierarchical' => false,
        'rewrite' => true,
        'supports' => array(false)
    );

    register_post_type( 'Bilder' , $args );
}


add_action("admin_init", "admin_init");
add_action('save_post', 'save_the_post');

function admin_init(){
    register_taxonomy("catalog", array("product"), array("hierarchical" => true, "label" => "Kategorien", "singular_label" => "Kategorien", "rewrite" => true));  

}


function save_the_post(){
    global $post;
    //update_post_meta($post->ID, "price", $_POST["price"]);
}

1 个答案:

答案 0 :(得分:0)

如何设置:

'supports' => array('thumbnail')

...你的主题也应该支持缩略图;把它放在你的主题的functions.php

add_theme_support( 'post-thumbnails', array( 'Bilder' ) );

希望它有所帮助!

http://codex.wordpress.org/Function_Reference/add_theme_support