This file contains hidden or 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
<?php | |
add_action( 'pre_get_posts', 'mfsbig_remove_floating_social_bar', 15 ); | |
/** | |
* Remove Floating Social Bar from outputting at the top of the content. | |
* | |
* FSB adds these filters at pre_get_posts, priorty 10, so we'll remove them | |
* just after that. | |
* | |
* @author Gary Jones |
This file contains hidden or 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
<?php | |
//* Customize [...] in WordPress excerpts | |
add_filter( 'the_excerpt', 'sp_read_more_custom_excerpt' ); | |
function sp_read_more_custom_excerpt( $text ) { | |
if ( strpos( $text, '[…]') ) { | |
$excerpt = str_replace( '[…]', '<p><a class="more-link" href="' . get_permalink() . '">Read More →</a></p><br>', $text ); | |
} else { | |
$excerpt = $text . '<p><a class="more-link" href="' . get_permalink() . '">Read More →</a></p>'; | |
} |
This file contains hidden or 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
<?php | |
//* Add Twitter handle to Jetpack Sharing module | |
add_filter ( 'jetpack_sharing_twitter_via', 'afn_add_twitterhandle_via' ); | |
function afn_add_twitterhandle_via() { | |
return 'WPSpeak'; | |
} |
This file contains hidden or 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
<?php | |
/** | |
* Enqueue and Load Font Awesome | |
* | |
* @author WPSpeak.com | |
*/ | |
add_action( 'wp_enqueue_scripts', 'afn_enqueue_awesome' ); | |
function afn_enqueue_awesome() { |
This file contains hidden or 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
<?php | |
add_filter( 'wp_nav_menu_objects', 'afn_custom_menu_class' ); | |
/** | |
* Filters the first and last nav menu objects in your menus | |
* to add custom classes. | |
* | |
* @since 1.0.0 | |
* |
OlderNewer