Skip to content

Instantly share code, notes, and snippets.

@audrasjb
Last active June 9, 2022 13:42
Show Gist options
  • Save audrasjb/1d7e727993ed63fa87798ff7b54332be to your computer and use it in GitHub Desktop.
Save audrasjb/1d7e727993ed63fa87798ff7b54332be to your computer and use it in GitHub Desktop.
Hide post date for specific categories in Twenty Seventeen (asked by Marie-Christine Rcd on WordPress Academy Facebook group – June 9, 2022)
<?php
function jba_hide_posted_on() {
if ( in_category( array( 'ma-categorie', 'une-autre-categorie' ) ) ) :
?>
<style>.posted-on { display: none; }</style>
<?php
endif;
}
add_action( 'wp_head', 'jba_hide_posted_on' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment