Created
September 25, 2018 17:25
-
-
Save LeoLopesWeb/a8b36ff80f90f9352bc7d5d3404cfc7e 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 | |
| add_action('init', 'remove_parent_theme_shortcodes'); | |
| function remove_parent_theme_shortcodes() { | |
| remove_shortcode( 'blog_posts' ); | |
| add_shortcode( 'blog_posts', 'blog_posts_custom' ); | |
| } | |
| function blog_posts_custom($atts) { | |
| echo 'test' | |
| } | |
| add_shortcode("blog_posts", "blog_posts_custom"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment