У меня есть собственный метабокс, созданный с использованием кода из справочника WordPress:
http://codex.wordpress.org/Function_Reference/add_meta_box
<?php
/* Define the custom box */
// WP 3.0+
// add_action('add_meta_boxes', 'myplugin_add_custom_box');
// backwards compatible
add_action('admin_init', 'myplugin_add_custom_box', 1);
/* Do something with the data entered */
add_action('save_post', 'myplugin_save_postdata');
/* Adds a box to the main column on the Post and Page edit screens */
function myplugin_add_custom_box() {
add_meta_box(
'myplugin_sectionid',
__( 'My Post Section Title', 'myplugin_textdomain' ),
'myplugin_inner_custom_box',
'post'
);
add_meta_box(
'myplugin_sectionid',
__( 'My Post Section Title', 'myplugin_textdomain' ),
'myplugin_inner_custom_box',
'page'
);
}
/* Prints the box content */
function myplugin_inner_custom_box() {
// Use nonce for verification
wp_nonce_field( plugin_basename(__FILE__), 'myplugin_noncename' );
// The actual fields for data entry
echo '<label for="myplugin_new_field">';
_e("Description for this field", 'myplugin_textdomain' );
echo '</label> ';
echo '<input type="text" id="myplugin_new_field" name="myplugin_new_field" value="whatever" size="25" />';
}
/* When the post is saved, saves our custom data */
function myplugin_save_postdata( $post_id ) {
// 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['myplugin_noncename'], plugin_basename(__FILE__) ) )
return $post_id;
// verify if this is an auto save routine.
// If it is our form has not been submitted, so we dont want to do anything
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return $post_id;
// Check permissions
if ( 'page' == $_POST['post_type'] )
{
if ( !current_user_can( 'edit_page', $post_id ) )
return $post_id;
}
else
{
if ( !current_user_can( 'edit_post', $post_id ) )
return $post_id;
}
// OK, we're authenticated: we need to find and save the data
$mydata = $_POST['myplugin_new_field'];
// Do something with $mydata
// probably using add_post_meta(), update_post_meta(), or
// a custom table (see Further Reading section below)
return $mydata;
}
?>
И я не уверен, как отображать его значение на каждой странице?
<?php
$meta = get_post_meta($post->ID, 'myplugin_new_field');
var_dump($meta);
?>
Дает:
массив (0) {}
Кроме того, поле метабокса не обновляет свое значение после нажатия кнопки «Обновить запись/или страницу». Это потому, что input value=»whathever» должен быть чем-то вроде приведенного выше кода.
Есть идеи?
Спасибо!
[редактировать]
Окончательный код, который не обновляет входное значение:
/* Define the custom box */
add_action('add_meta_boxes', 'myplugin_add_custom_box');
// backwards compatible
add_action('admin_init', 'myplugin_add_custom_box', 1);
/* Do something with the data entered */
add_action('save_post', 'myplugin_save_postdata');
/* Adds a box to the main column on the Post and Page edit screens */
function myplugin_add_custom_box() {
add_meta_box(
'metabox_sidebar_select',
__( 'My Post Section Title', 'myplugin_textdomain' ),
'myplugin_inner_custom_box',
'post'
);
add_meta_box(
'metabox_sidebar_select',
__( 'My Post Section Title', 'myplugin_textdomain' ),
'metabox_sidebar_select',
'page'
);
}
/* Prints the box content */
function myplugin_inner_custom_box() {
// Use nonce for verification
wp_nonce_field( plugin_basename(__FILE__), 'myplugin_noncename' );
// The actual fields for data entry
echo '<label for="myplugin_new_field">';
_e("Description for this field", 'myplugin_textdomain' );
echo '</label> ';
echo '<input type="text" id="myplugin_new_field" name="myplugin_new_field" value="'.get_post_meta($post->ID, 'myplugin_new_field',true).'" size="25" />';
}
/* When the post is saved, saves our custom data */
function myplugin_save_postdata( $post_id ) {
// 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['myplugin_noncename'], plugin_basename(__FILE__) ) )
return $post_id;
// verify if this is an auto save routine.
// If it is our form has not been submitted, so we dont want to do anything
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return $post_id;
// Check permissions
if ( 'page' == $_POST['post_type'] )
{
if ( !current_user_can( 'edit_page', $post_id ) )
return $post_id;
}
else
{
if ( !current_user_can( 'edit_post', $post_id ) )
return $post_id;
}
// OK, we're authenticated: we need to find and save the data
$mydata = $_POST['myplugin_new_field'];
// Do something with $mydata
// probably using add_post_meta(), update_post_meta(), or
// a custom table (see Further Reading section below)
global $post;
update_post_meta($post->ID, myplugin_new_field, $mydata);
return $mydata;
}
voodoopress.com/2011/03/adding-meta-boxes-to-your-post-screen У меня есть статья о коде метабоксов, если она вам поможет. Это для настройки, а затем voodoopress.com/2011/03/… Расскажите об использовании значений, выполнив эхо get_post_meta
у вас есть функция, которая сохраняет метаданные? обычно цепляют за
save_post
крючок? Если нет, то это ваша проблема, вы не сохраняете метаданные.@Rev. Voodoo, проверю как можно скорее. Спасибо. @Bainternet, как я сказал в первом посте, я использую ТОЧНО код, доступный на codex.wordpress.org/Function_Reference/add_meta_box. Кроме того, я скопировал и вставил его в первый пост.
@ Bainternet, Боже, я слепой и глупый. Я просто скопировал вставленный код и сразу же избавился от комментариев :/ Большое вам спасибо. В ЛЮБОМ СЛУЧАЕ последняя строка не работает (входные значения не обновляются, входные данные всегда пусты). Есть идеи, почему?
@Wordpressor: вставь свой код в корзину, и я тебе скажу.
@Wordpressor: добавить «глобальный $post;» для
myplugin_inner_custom_box()
работы и добавьте метки ‘ кupdate_post_meta($post->ID, 'myplugin_new_field', $mydata);
@Wordpressor: я обновил свой ответ.
@Wordpressor: рад, что ты понял.
есть ваш ответ, в вашем коде, где он говорит:
вам нужно фактически вставить/обновить данные в базу данных, поэтому добавьте что-то вроде:
и данные будут сохранены, чтобы вы могли получить их, используя свой код:
и единственное другое изменение, которое вам нужно, — это функция, которая отображает изменение метабокса:
к
Обновлять:
Чтобы ответить на ваш вопрос в комментариях:
чтобы сохранить список выбора, вы сохраняете его только способом сохранения в виде текстового ввода, а для отображения ранее выбранного параметра в мета-поле вы просто перебираете параметр и видите, что было выбрано, и добавляете «выбранный» атрибут. Например :