Wordpress自定义字段(选择)发布

时间:2015-10-09 20:44:51

标签: php sql wordpress-plugin wordpress

我试图通过制作插件来了解插件。它为Wordpress Admin菜单“Propagandas(ads)”添加了一个新菜单,它创建了一个帖子类型“propaganda_item”。

由于我需要用户为每个“Propaganda”选择一个州/城市,我已经制作了一个带有城市/州的SQL表。

到目前为止,这么好,但现在我不知道如何在“Propaganda”编辑页面中选择php select combobox。 Example of what I mean

其实我知道如何填充Select,但不知道如何通过我的插件将其放入帖子中。

哦,这是我的插件代码:

<?php 
/*
Plugin Name: Frankec
Plugin URI: 
Description: propagandas
Version:1
Author URI:
*/?>

<?php// Registra Propagandas

function register_cpt_Propagandas() {

$labels = array(
    'name' => _x( 'Propagandas', 'propaganda_item' ),
    'singular_name' => _x( 'Propagandas', 'propaganda_item' ),
    'add_new' => _x( 'Nova', 'propaganda_item' ),
    'add_new_item' => _x( 'Adicionar Propagandas', 'propaganda_item' ),
    'edit_item' => _x( 'Editar Propagandas', 'propaganda_item' ),
    'new_item' => _x( 'Nova Propagandas', 'propaganda_item' ),
    'view_item' => _x( 'Ver Propagandas', 'propaganda_item' ),
    'search_items' => _x( 'Procurar Propagandas', 'propaganda_item' ),
    'not_found' => _x( 'Nenhuma Propaganda encontrada', 'propaganda_item' ),
    'not_found_in_trash' => _x( 'Nenhuma Propaganda encontrada no lixo', 'propaganda_item' ),
    'parent_item_colon' => _x( 'Propagandas-pai:', 'propaganda_item' ),
    'menu_name' => _x( 'Propagandas', 'propaganda_item' ),
);

$args = array(
    'labels' => $labels,
    'hierarchical' => true,
    'description' => 'Propagandas por Cateoria',
    'supports' => array( 'title', 'editor', 'thumbnail'),
    'taxonomies' => array( 'genres' ),
    'public' => true,
    'show_ui' => true,
    'show_in_menu' => true,
    'menu_position' => 5,
    'menu_icon' => 'dashicons-images-alt2',
    'show_in_nav_menus' => true,
    'publicly_queryable' => true,
    'exclude_from_search' => false,
    'has_archive' => true,
    'query_var' => true,
    'can_export' => true,
    'rewrite' => true,
    'capability_type' => 'post'
);

register_post_type( 'propaganda_item', $args );
}

add_action( 'init', 'register_cpt_Propagandas' );


function remove_menus(){


 remove_menu_page( 'edit-comments.php' );          //Comments    

}
add_action( 'admin_menu', 'remove_menus' );



?>

先谢谢你们! =)

1 个答案:

答案 0 :(得分:0)

我认为你正在努力做到这一点。您不必创建任何SQL表。尝试搜索如何向CPT添加自定义选择字段。您可以使用Advanced Custom Fields之类的插件,或者如果您希望自己编写代码,请使用Custom Meta Box framework