Created
October 18, 2011 12:36
-
-
Save benbalter/1295313 to your computer and use it in GitHub Desktop.
Remove SexyBookmarks from WP Resume pages
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
function remove_shrsb () { | |
remove_filter('the_content', 'shrsb_position_menu'); | |
} | |
function wpr_add_shrsb() { | |
add_filter('the_content', 'shrsb_position_menu'); | |
} | |
add_action( 'wp_resume_shortcode_pre', 'wpr_remove_shrsb' ); | |
add_action( 'wp_resume_shortcode_post', 'wpr_add_shrsb' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment