Mediante el archivo functions.php ubicado en /wp-includes/functions.php. Copia de seguridad previa.
function remove_posts_date() { add_filter('the_date', '__return_false'); add_filter('get_the_date', '__return_false'); add_filter('the_author', '__return_false'); add_filter('get_the_author', '__return_false'); add_filter('get_comment_date', '__return_false'); add_filter('get_comment_time', '__return_false'); } add_action('loop_start', 'remove_posts_date');
Y con esto, ya tendremos lista nuestra función que eliminara la fecha y el autor de las entradas, así como la fecha de los comentarios.
No obstante, si queréis hacerlo en algún tema especifico, deberéis insertar este fragmento en el archivo functions.php del tema en cuestión.
Si queremos que no aparezca la caja del autor con un tema específico, indagaremos sobre la estructura del tema, hasta encontrar algun archivo similar a single.php o parecido:
function remove_data_posts() { add_filter('the_date', '__return_false'); add_filter('get_the_date', '__return_false'); add_filter('the_author', '__return_false'); add_filter('get_the_author', '__return_false'); add_filter('get_comment_date', '__return_false'); add_filter('get_comment_time', '__return_false'); } add_action('loop_start', 'remove_data_posts'); //Custom theme add_action('ocean_before_single_post_author_bio', 'remove_data_posts'); add_action('ocean_after_single_post_author_bio', 'remove_data_posts');
Sólo se verá reflejado los cambios en el tema que estemos usando.