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 | |
// pulled from https://github.com/billerickson/BE-Genesis-Child | |
// reposition inpost metabox | |
remove_action( 'admin_menu', 'genesis_add_inpost_layout_box' ); | |
add_action( 'admin_menu', 'be_add_inpost_layout_box' ); | |
function be_add_inpost_layout_box() { | |
if ( ! current_theme_supports( 'genesis-inpost-layouts' ) ) | |
return; |