Created
August 18, 2013 10:38
-
-
Save MZAWeb/6261003 to your computer and use it in GitHub Desktop.
Playing with the new do_accordion_sections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'edit_form_after_editor', 'testing_accordion_section' ); | |
function testing_accordion_section() { | |
$screen = get_current_screen(); | |
do_accordion_sections( $screen, 'normal', get_post() ); | |
$page = $screen->id; | |
global $wp_meta_boxes; | |
$wp_meta_boxes[$page]['normal'] = array(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment