尝试在fontpress主题的标题中添加fontawesome图标

我试图在我的wordpress主题的主标题左侧添加一个图标, 代码在php中, 这就是我不熟悉的东西。我已经使用filezilla从主题获取头文件。我可以在代码中的任何地方放入图标, 还是需要在custom-header.php中这样做?我尝试添加的图标就像这样< i class =” fa fa-cogs” > < / i>

< body < ?php body_class(); ?> > < div id="page" class="hfeed site"> < header id="masthead" class="site-header" role="banner"> < nav id="site-navigation" class="main-navigation" role="navigation"> < h1 class="menu-toggle"> < ?php _e( 'Menu', 'padhang' ); ?> < /h1> < a class="skip-link screen-reader-text" href="http://www.srcmini.com/#content"> < ?php _e( 'Skip to content', 'padhang' ); ?> < /a> < ?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> < /nav> < !-- #site-navigation --> < div class="site-branding"> < ?php if ( get_header_image() ) : ?> < a href="http://www.srcmini.com/< ?php echo esc_url( home_url('/' ) ); ?> " rel="home"> < img class="site-logo" src="http://www.srcmini.com/< ?php header_image(); ?>" width="< ?php echo get_custom_header()-> width; ?> " height="< ?php echo get_custom_header()-> height; ?> " alt="< ?php bloginfo( 'name' ); ?> "> < /a> < ?php endif; ?> < h1 class="site-title"> < a href="http://www.srcmini.com/< ?php echo esc_url( home_url('/' ) ); ?> " rel="home"> < ?php bloginfo( 'name' ); ?> < /a> < /h1> < h2 class="site-description"> < ?php bloginfo( 'description' ); ?> < /h2> < /div> < /header> < !-- #masthead --> < div id="content" class="site-content">

#1【尝试在fontpress主题的标题中添加fontawesome图标】很简单, 你需要在主题的function.php文件中加入Font Awesome CSS才能加载它。并使用fa-icon语法形式在HTML中使用它。
add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' ); function enqueue_load_fa() { wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0 /css/font-awesome.min.css' ); }

    推荐阅读