Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created April 19, 2019 14:29
Show Gist options
  • Save juanfra/a0e6cc1dd584bebb15d3ddd0f1d8c13b to your computer and use it in GitHub Desktop.
Save juanfra/a0e6cc1dd584bebb15d3ddd0f1d8c13b to your computer and use it in GitHub Desktop.
Remove article meta in taxonomy pages
<?php
//* Do NOT include the opening php tag
add_filter( 'nice_article_meta', 'flatbase_article_meta_custom' );
function flatbase_article_meta_custom( $html ) {
if ( is_tax() ) {
return '';
}
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment