'No Sidebar', 'sidebar-left' => 'Left Sidebar', 'sidebar-right' => 'Right Sidebar' ); ?>
'; echo ' '; _e( "Remove 'wpautop' filter to main content.", 'yiw' ); echo ''; } /* Prints the box content */ function yiw_admin_extra_content_page_inner_custom_box() { // Use nonce for verification wp_nonce_field( plugin_basename(__FILE__), 'admin_noncename' ); $post_id = ( isset( $_GET['post'] ) ) ? $_GET['post'] : false; $select_text = ( $post_id != FALSE ) ? get_post_meta( $post_id, '_page_extra_content', true ) : ''; $select_autop = ( $post_id != FALSE ) ? get_post_meta( $post_id, '_page_extra_content_autop', true ) : FALSE; // The actual fields for data entry echo '' . __( 'If you want, you can add some text to show above the footer, under content and sidebar.', 'yiw' ) . '
'; echo ''.htmlentities($select_text).''; echo ''; } // ========================== SLOGAN PAGE ================================ /* Prints the box content */ function yiw_admin_slogan_page_inner_custom_box() { // Use nonce for verification wp_nonce_field( plugin_basename(__FILE__), 'admin_noncename' ); $post_id = ( isset( $_GET['post'] ) ) ? $_GET['post'] : false; $select = ( $post_id != FALSE ) ? get_post_meta( $post_id, '_slogan_page', true ) : ''; // The actual fields for data entry echo ''; } ?>