View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Make Font Awesome available | |
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); | |
function enqueue_font_awesome() { | |
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.css' ); | |
} |
View font-awesome-example-basic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-camera-retro"></i> fa-camera-retro |
View font-awesome-example-larger-icons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-camera-retro fa-lg"></i> fa-lg | |
<i class="fa fa-camera-retro fa-2x"></i> fa-2x | |
<i class="fa fa-camera-retro fa-3x"></i> fa-3x | |
<i class="fa fa-camera-retro fa-4x"></i> fa-4x | |
<i class="fa fa-camera-retro fa-5x"></i> fa-5x |
View font-awesome-example-fixed-width-icons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="list-group"> | |
<a class="list-group-item" href="#"><i class="fa fa-home fa-fw"></i> Home</a> | |
<a class="list-group-item" href="#"><i class="fa fa-book fa-fw"></i> Library</a> | |
<a class="list-group-item" href="#"><i class="fa fa-pencil fa-fw"></i> Applications</a> | |
<a class="list-group-item" href="#"><i class="fa fa-cog fa-fw"></i> Settings</a> | |
</div> |
View font-awesome-example-list-icons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="fa-ul"> | |
<li><i class="fa-li fa fa-check-square"></i>List icons</li> | |
<li><i class="fa-li fa fa-check-square"></i>can be used</li> | |
<li><i class="fa-li fa fa-spinner fa-spin"></i>as bullets</li> | |
<li><i class="fa-li fa fa-square"></i>in lists</li> | |
</ul> |
View font-awesome-example-bordered-pulled-icons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-quote-left fa-3x fa-pull-left fa-border"></i> | |
...tomorrow we will run faster, stretch out our arms farther... | |
And then one fine morning— So we beat on, boats against the | |
current, borne back ceaselessly into the past. |
View font-awesome-example-animated-icons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-spinner fa-spin"></i> | |
<i class="fa fa-circle-o-notch fa-spin"></i> | |
<i class="fa fa-refresh fa-spin"></i> | |
<i class="fa fa-cog fa-spin"></i> | |
<i class="fa fa-spinner fa-pulse"></i> |
View function.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Make Font Awesome available | |
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); | |
function enqueue_font_awesome() { | |
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' ); | |
} |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* NOTE: Add to functions.php or to a functionality plugin | |
//*Remove Admin Bar For Subscribers | |
add_action('after_setup_theme', 'remove_admin_bar'); | |
function remove_admin_bar() { | |
if (!current_user_can('administrator') && !is_admin()) { | |
show_admin_bar(false); | |
} | |
} |
View gist:f58858ccb3e9204b8117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* NOTE: Add to functions.php or to a functionality plugin | |
//* Remove Links Menu | |
add_action( 'admin_menu', 'my_remove_menu_pages' ); | |
function my_remove_menu_pages() { | |
remove_menu_page('link-manager.php'); | |
} |
OlderNewer