Я добавил мета-поле на страницу своего сообщения, чтобы иметь возможность выбирать макет для каждого сообщения. Я создал мета-окно, оно отображается, но не сохраняется.
if ( ! function_exists( 'post_layout_meta_box' ) ){
function post_layout_meta_box( $post ){
$custom = get_post_custom($post->ID);
$page_layout = isset($custom["page_layout_left"][0]) ? $custom["page_layout_left"][0] : ( isset($custom["page_layout_right"][0]) ? $custom["page_layout_right"][0] : $custom["page_layout_none"][0] );
?>
>Right Sidebar
Подробнее здесь: https://stackoverflow.com/questions/256 ... not-saving