Last active
June 9, 2022 13:42
-
-
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)
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 | |
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