Si veis vuestro código fuente posiblemente veréis un css inline como este:
.recentcomments
a{display:inline !important;padding:0
!important;margin:0
!important}
Esto es algo que obviamente se puede optimizar. Para hacerlo copiamos este css y lo movemos a nuestro style.css de nuestro tema y luego editamos nuestro fichero /wp-includes/default-widgets.php Y comentar estas líneas:
if ( is_active_widget(false, false, $this->id_base) )
add_action( ‘wp_head’, array(&$this, ‘recent_comments_style’) );
Como:
//if ( is_active_widget(false, false, $this->id_base) )
//add_action( ‘wp_head’, array(&$this, ‘recent_comments_style’) );
Refrescamos y listo.


Comentarios recientes