在主题文件夹中,将以下代码添加到函数文件中:
function menu_icon_stylesheet() {
wp_register_style( \'fontawesome\', \'http:////maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css\' );
wp_enqueue_style( \'fontawesome\');
}
add_action( \'wp_enqueue_scripts\', \'menu_icon_stylesheet\' );
现在,您可以向每个菜单项添加一个类。单击向下箭头可查看与该菜单项相关的更多选项。在“CSS类”字段中,键入以下内容:
例如:
fa fa-lg fa-home
在这里
"fa" is used for all items with a Font Awesome icon
"fa-lg" sets the size of the icon to large
"fa-home" relates to the specific icon you want to display.
最后,在样式表中添加以下样式代码:
/* styling for menu icons */
.navigation-class ul li {
width: 100%;
}
.fa::before {
float: left;
margin-top: 8px;
width: 30px;
}
.navigation-class ul li.fa.fa-lg a {
font-family: \'Noto Serif\', serif;
font-size: 0.8em;
}
现在,您的导航菜单已包含完整的图标!
希望对你有帮助