wordpress blog hide author functions.php code example
Example 1: how to hide post author in wordpress
function twentynineteen_posted_by() {
}
endif;
Example 2: how to hide post author in wordpress
ul li.meta-author {
display: none;
}
function twentynineteen_posted_by() {
}
endif;
ul li.meta-author {
display: none;
}