Cargar más estilos en tu child-theme de wordpress
Añadir a function.php de child theme
/** Add scripts & styles*/
add_action( 'wp_enqueue_scripts', 'load_fontawesome_style', 999 );
function load_fontawesome_style() {
wp_register_style( 'font-awesome', get_stylesheet_directory_uri() . 'font-awesome-4.3.0/css/font-awesome.css' );
wp_enqueue_style( 'font-awesome' );
}
/** Add scripts & styles*/
add_action( 'wp_enqueue_scripts', 'load_fontawesome_style', 999 );
function load_fontawesome_style() {
wp_register_style( 'font-awesome', get_stylesheet_directory_uri() . 'font-awesome-4.3.0/css/font-awesome.css' );
wp_enqueue_style( 'font-awesome' );
}