Created
November 23, 2016 13:17
-
-
Save ahmedeshaan/5fe6b3378daa650ea829a332e72dcb2c to your computer and use it in GitHub Desktop.
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 | |
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