添加自定义字段在wordpress中添加新帖子页面

时间:2015-10-02 10:31:31

标签: wordpress wordpress-plugin custom-post-type

我正在开发一个wordpress推荐插件。

我创建了一个自定义帖子类型也显示并正常工作。但现在我想添加更多字段,如"公司名称","网站"。我知道我可以通过添加自定义字段来管理,但我想为此添加一个单独的部分。

任何人都可以帮我弄明白怎么做吗?

4 个答案:

答案 0 :(得分:1)

您可以使用"高级自定义字段",这是一个完美的解决方案。

答案 1 :(得分:1)

您还可以实现元框,它将显示在右侧边栏上,与您显示的类别相同。

答案 2 :(得分:-1)

add_action( 'add_meta_boxes', 'add_events_metaboxes' );
// Add the Events Meta Boxes
function add_events_metaboxes() {
add_meta_box('wpt_events_address', 'Address', 'wpt_events_address', 'events', 'normal', 'high');
add_meta_box('wpt_events_phone', 'Phone', 'wpt_events_phone', 'events', 'normal', 'high');
add_meta_box('wpt_events_type', 'Email', 'wpt_events_Type', 'events', 'normal', 'high');
add_meta_box('wpt_events_cap', 'Capacity', 'wpt_events_cap', 'events', 'normal', 'high');
}

答案 3 :(得分:-1)

// Save the Metabox Data
function wpt_save_events_meta($post_id, $post) {
// verify this came from the our screen and with proper authorization,
// because save_post can be triggered at other times
if ( !wp_verify_nonce( $_POST['eventmeta_noncename'], plugin_basename(__FILE__) )) {
return $post->ID;
}
// Is the user allowed to edit the post or page?
if ( !current_user_can( 'edit_post', $post->ID ))
return $post->ID;
// OK, we're authenticated: we need to find and save the data
// We'll put it into an array to make it easier to loop though.
$events_meta['_address'] = $_POST['_address'];
$events_meta['_phone'] = $_POST['_phone'];
$events_meta['_type'] = $_POST['_type'];
$events_meta['_cap'] = $_POST['_cap'];
// Add values of $events_meta as custom fields
foreach ($events_meta as $key => $value) { // Cycle through the $events_meta array!
if( $post->post_type == 'revision' ) return; // Don't store custom data twice
$value = implode(',', (array)$value); // If $value is an array, make it a CSV (unlikely)
if(get_post_meta($post->ID, $key, FALSE)) { // If the custom field already has a value
update_post_meta($post->ID, $key, $value);
} else { // If the custom field doesn't have a value
add_post_meta($post->ID, $key, $value);
}
if(!$value) delete_post_meta($post->ID, $key); // Delete if blank
}
}
add_action('save_post', 'wpt_save_events_meta', 1, 2); // save the custom fields

// The Event address Metabox
function wpt_events_address() {
global $post;
// Noncename needed to verify where the data originated
echo '<input type="hidden" name="eventmeta_noncename" id="eventmeta_noncename" value="' .
wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
// Get the address data if its already been entered
$address = get_post_meta($post->ID, '_address', true);

// Echo out the field
echo '<input type="text" name="_address" value="' . $address  . '" class="widefat" />';
}
function wpt_events_phone() {
global $post;
// Noncename needed to verify where the data originated
echo '<input type="hidden" name="eventmeta_noncename" id="eventmeta_noncename" value="' .
wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
// Get the address data if its already been entered
$phone = get_post_meta($post->ID, '_phone', true);

// Echo out the field
echo '<input type="text" name="_phone" value="' . $phone  . '" class="widefat" />';
}
function wpt_events_type() {
global $post;
// Noncename needed to verify where the data originated
echo '<input type="hidden" name="eventmeta_noncename" id="eventmeta_noncename" value="' .
wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
// Get the address data if its already been entered
$type = get_post_meta($post->ID, '_type', true);

// Echo out the field
echo '<input type="text" name="_type" value="' . $type  . '" class="widefat" />';
}
function wpt_events_cap() {
global $post;
// Noncename needed to verify where the data originated
echo '<input type="hidden" name="eventmeta_noncename" id="eventmeta_noncename" value="' .
wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
// Get the address data if its already been entered
$cap = get_post_meta($post->ID, '_cap', true);

// Echo out the field
echo '<input type="text" name="_cap" value="' . $cap  . '" class="widefat" />';
}
$events_meta['_address'] = $_POST['_address'];
$events_meta['_phone'] = $_POST['_phone'];
$events_meta['_type'] = $_POST['_type'];
$events_meta['_cap'] = $_POST['_cap'];