Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created November 23, 2016 13:17
Show Gist options
  • Save ahmedeshaan/5fe6b3378daa650ea829a332e72dcb2c to your computer and use it in GitHub Desktop.
Save ahmedeshaan/5fe6b3378daa650ea829a332e72dcb2c to your computer and use it in GitHub Desktop.
<?php
function my_shortcode_function_from_main_theme(){
return "okey";
}
//add a custom shortcode
add_action( 'init', 'my_add_shortcodes' );
function my_add_shortcodes()
{ remove_shortcode( 'divider' );
add_shortcode( 'divider', 'my_shortcode_function_from_main_theme' );}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment