Skip to content

Instantly share code, notes, and snippets.

@karpstrucking
Created October 11, 2014 11:54
Show Gist options
  • Save karpstrucking/d755140a6e6a0c369f75 to your computer and use it in GitHub Desktop.
Save karpstrucking/d755140a6e6a0c369f75 to your computer and use it in GitHub Desktop.
<?php
// remove theme-provided shortcode
remove_shortcode( 'recent_works' );
// add our own modified version
add_shortcode( 'recent_works', 'my_shortcode_recent_works' );
function my_shortcode_recent_work( $atts, $content = null ) {
... // your modified shortcode function here
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment