Skip to content

Instantly share code, notes, and snippets.

@LeoLopesWeb
Created September 25, 2018 17:25
Show Gist options
  • Select an option

  • Save LeoLopesWeb/a8b36ff80f90f9352bc7d5d3404cfc7e to your computer and use it in GitHub Desktop.

Select an option

Save LeoLopesWeb/a8b36ff80f90f9352bc7d5d3404cfc7e to your computer and use it in GitHub Desktop.
<?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