This file contains 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
/** | |
* WP 3.5 doesn't update menu_order for ordering attachments, so this function updates the menu_order so that you can orderby menu_order | |
* @param int $id | |
*/ | |
function pmc_gallery_menu_order_fix($id) { | |
$regex_pattern = get_shortcode_regex(); | |
preg_match ('/'.$regex_pattern.'/s', stripslashes($_POST['content']), $regex_matches); | |
if ( ! $regex_matches ) { | |
return false; | |
} |