$this->add_meta_box( 'select_post_template', __( 'Post Template', 'custom-post-templates' ), 'select_post_template', 'post', 'side', 'default' );
Özel yazılan tipleri ile bir eklenti çalışması yapmak için, ben özel yazılan türü adına "yazı" değiştirmek için söylendi. Ben bir şekilde bu hattı değiştirerek (normal mesajların dahil) all özel yazılan tipleri ile çalışma yapabilirsiniz olmadığını biliyor mu?
FYI, I found this at: http://wordpress.org/support/topic/custom-post-templates-with-custom-post-types-in-wp-30?replies=5#post-1679398
And it's in reference to the Custom Post Template plugin: http://wordpress.org/extend/plugins/custom-post-template/
Şimdiden teşekkürler!
EDIT:
Ben denedim:
$post_types = get_post_types(array("public" => true));
foreach ($post_types as $post_type) {
$this->add_meta_box("select_post_template", __("Post Template", "custom-post-templates"), "select_post_template", $post_type, "side", "default");
}
Ama özel yazılan tipleri hala şablon seçim menüsünü alamadım. Mesaj da orijinal kod ile yaptığı gibi yapmak. Öneriniz için teşekkürler ... Herkes başka var mı?
Not: Kavramsal yaklaşım sağlam. Ben özel yazılan türlerinin listesi ile benim kendi dizi oluşturmak varsa, bu kod onlara çiftleşmiş eklese.