add_action( 'after_setup_theme', 'news_child_theme_setup', 11 ); function news_child_theme_setup() { /* Get the theme prefix ("news"). */ $prefix = hybrid_get_prefix(); remove_theme_support( 'breadcrumb-trail' ); // Remove this line if you have second thoughts. add_filter( 'news_entry_meta', 'news_child_entry_meta' ); } function news_child_entry_meta( $entry_meta ) { $entry_meta = '
Share this on: [entry-facebook-link] [entry-twitter-link]
'; return $entry_meta; }