[WordPress] Eliminar fecha y autor en las entradas y comentarios

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');  …

Continuar leyendo[WordPress] Eliminar fecha y autor en las entradas y comentarios
Programación web.

[MySQL] Extraer valores con JSON_EXTRACT en MySQL

Cuando trabajamos con bases de datos, puede ocurrir que tengamos datos almacenados en una tabla(o varias), en formato JSON. Es decir: [{"count":x,"content":"feelings"}], [{"count":y,"content":"peace"}], ... Y debemos poder trabajar con dicho…

Continuar leyendo[MySQL] Extraer valores con JSON_EXTRACT en MySQL