Eliminar fecha y autor en las entradas y comentarios de WordPress
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'); …