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
//////////////////////////////// | |
// ADD CSS CLASSES TO BUILDER // | |
//////////////////////////////// | |
add_theme_support('avia_template_builder_custom_css'); |
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
////////////////////////////// | |
// BLOG LIST FEED SHORTCODE // | |
////////////////////////////// | |
add_shortcode( 'bw_blog_list', 'blog_list_shortcode' ); | |
function blog_list_shortcode( $atts ) { | |
ob_start(); | |
$kblog_args = array( | |
'post_type' => 'post', | |
'posts_per_page' => 3, |
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
///////////////// | |
// MOBILE LOGO // | |
///////////////// | |
add_filter('avf_logo','av_change_logo'); | |
function av_change_logo($logo) { | |
if(wp_is_mobile()) { | |
$logo = get_stylesheet_directory_uri() . '/img/mobile-logo.png'; | |
} | |
return $logo; |
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
//////////////////////////////////// | |
// ADD NEW GOOGLE FONTS TO ENFOLD // | |
//////////////////////////////////// | |
add_filter( 'avf_google_content_font', 'add_content_font'); | |
function add_content_font($fonts) | |
{ | |
$fonts['Crimson Text'] = 'Crimson Text:400,400i,700,700i'; | |
return $fonts; | |
} |
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
////////////////////////// | |
// ENQUEUE FONT AWESOME // | |
////////////////////////// | |
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); | |
function enqueue_font_awesome() { | |
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' ); | |
} |
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
//////////////////// | |
// CUSTOM EXCERPT // | |
//////////////////// | |
function custom_excerpt_length( $length ) { | |
return 20; | |
} | |
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); | |
function custom_excerpt_more( $more ) { |
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
///////////////////////// | |
// ENQUEUE GOOGLE FONT // | |
///////////////////////// | |
add_action('wp_enqueue_scripts', 'custom_google_fonts'); | |
function keokee_google_fonts() { | |
wp_enqueue_style( 'keokee_google_fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700' ); | |
} |
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
///////////////////// | |
// YOAST TO BOTTOM // | |
///////////////////// | |
function yoasttobottom() { | |
return 'low'; | |
} | |
add_filter( 'wpseo_metabox_prio', 'yoasttobottom'); |
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
/////////////////////////// | |
// CUSTOM EXCERPT LENGTH // | |
/////////////////////////// | |
function custom_excerpt_length($length) { | |
return 40; | |
} | |
add_filter('excerpt_length', 'custom_excerpt_length'); |
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
////////////////////// | |
// DASHBOARD STYLES // | |
////////////////////// | |
function dashboard_custom_css() { | |
wp_enqueue_style('dashboard-style', get_stylesheet_directory_uri() . '/css/dashboard.css'); | |
} | |
add_action('admin_head', 'dashboard_custom_css'); |
OlderNewer