false,
'header-text' => false,
) );
add_theme_support( 'title-tag' );
add_image_size('homepage-thumb',570,380,true);
add_theme_support( 'custom-logo', array(
'height' => 80,
'width' => 150,
'flex-height' => true,
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'bodybuild' ),
'footer' => __( 'Footer Menu', 'bodybuild' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
add_editor_style( 'editor-style.css' );
}
endif; // bodybuild_setup
add_action( 'after_setup_theme', 'bodybuild_setup' );
function bodybuild_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'bodybuild' ),
'description' => __( 'Appears on blog page sidebar', 'bodybuild' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'bodybuild' ),
'id' => 'footer-1',
'description' => __( 'Appears at the footer.', 'bodybuild' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'bodybuild' ),
'id' => 'footer-2',
'description' => __( 'Appears at the footer.', 'bodybuild' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'bodybuild' ),
'id' => 'footer-3',
'description' => __( 'Appears at the footer.', 'bodybuild' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'bodybuild' ),
'id' => 'footer-4',
'description' => __( 'Appears at the footer.', 'bodybuild' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'bodybuild_widgets_init' );
function bodybuild_font_url(){
$font_url = '';
/* Translators: If there are any character that are not
* supported by Roboto, trsnalate this to off, do not
* translate into your own language.
*/
$roboto = _x('on','roboto:on or off','bodybuild');
if('off' !== $roboto ){
$font_family = array();
if('off' !== $roboto){
$font_family[] = 'Roboto:300,400,600,700,800,900';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function bodybuild_scripts() {
wp_enqueue_style('bodybuild-font', bodybuild_font_url(), array());
wp_enqueue_style( 'bodybuild-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'bodybuild-editor-style', get_template_directory_uri()."/editor-style.css" );
wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'bodybuild-main-style', get_template_directory_uri()."/css/responsive.css" );
wp_enqueue_style( 'bodybuild-base-style', get_template_directory_uri()."/css/style_base.css" );
wp_enqueue_script( 'jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'bodybuild-custom-js', get_template_directory_uri() . '/js/custom.js' );
wp_enqueue_style( 'bodybuild-font-awesome-style', get_template_directory_uri()."/css/font-awesome.css" );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'bodybuild_scripts' );
function bodybuild_ie_stylesheet(){
global $wp_styles;
/** Load our IE-only stylesheet for all versions of IE.
*
*
* Note: It is also possible to just check and see if the $is_IE global in WordPress is set to true before
* calling the wp_enqueue_style() function. If you are trying to load a stylesheet for all browsers
* EXCEPT for IE, then you would HAVE to check the $is_IE global since WordPress doesn't have a way to
* properly handle non-IE conditional comments.
*/
wp_enqueue_style('bodybuild_ie', get_template_directory_uri().'/css/ie.css', array('bodybuild_style'));
$wp_styles->add_data('bodybuild_ie','conditional','IE');
}
add_action('wp_enqueue_scripts','bodybuild_ie_stylesheet');
define('bodybuild_url','http://www.zylothemes.com/','bodybuild');
define('bodybuild_pro_theme_url','http://zylothemes.com/themes/best-fitness-wordpress-theme/','bodybuild');
define('bodybuild_theme_doc','http://zylothemesdemo.com/documentation/bodybuild-doc/','bodybuild');
define('bodybuild_live_demo','http://zylothemesdemo.com/bodybuild/','bodybuild');
define('bodybuild_themes','http://www.zylothemes.com/themes/','bodybuild');
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template for about theme.
*/
require get_template_directory() . '/inc/about-themes.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
if ( ! function_exists( 'bodybuild_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
* @since bodybuild
*/
function bodybuild_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
// get slug by id
function bodybuild_get_slug_by_id($id) {
$post_data = get_post($id, ARRAY_A);
$slug = $post_data['post_name'];
return $slug;
}