';
bloginfo('name');
echo " ";
if (is_category() || is_single()) {
the_category(', ');
if (is_single()) {
echo " ";
the_title();
echo " ";
}
} elseif (is_page()) {
echo the_title();
}
}
}
/* Theme Setup */
function bb_mobile_application_setup() {
if ( ! isset( $content_width ) )
$content_width = 640; /* pixels */
load_theme_textdomain( 'bb-mobile-application', get_template_directory() . '/languages' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'title-tag' );
add_theme_support( 'custom-logo', array(
'height' => 240,
'width' => 240,
'flex-height' => true,
) );
add_image_size('bb-mobile-application-homepage-thumb',240,145,true);
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'bb-mobile-application' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'f1f1f1'
) );
}
endif;
add_action( 'after_setup_theme', 'bb_mobile_application_setup' );
/* Theme Widgets Setup */
function bb_mobile_application_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'bb-mobile-application' ),
'description' => __( 'Appears on blog page sidebar', 'bb-mobile-application' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Page Sidebar', 'bb-mobile-application' ),
'description' => __( 'Appears on page sidebar', 'bb-mobile-application' ),
'id' => 'sidebar-2',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer Navigation', 'bb-mobile-application' ),
'description' => __( 'Appears on footer', 'bb-mobile-application' ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'bb_mobile_application_widgets_init' );
/* Theme Font URL */
function bb_mobile_application_font_url() {
$font_url = '';
/* Translators: If there are any character that are
* not supported by PT Sans, translate this to off, do not
* translate into your own language.
*/
$ptsans = _x('on','PT Sans font:on or off','bb-mobile-application');
/* Translators: If there are any character that are
* not supported by Roboto, translate this to off, do not
* translate into your own language.
*/
$roboto = _x('on','Roboto font:on or off','bb-mobile-application');
/* Translators: If there are any character that are
* not supported by Roboto Condensed, translate this to off, do not
* translate into your own language.
*/
$roboto_cond = _x('on','Roboto Condensed font:on or off','bb-mobile-application');
if('off' !== $ptsans || 'off' !== $roboto || 'off' !== $roboto_cond){
$font_family = array();
if('off' !== $ptsans){
$font_family[] = 'PT Sans:300,400,600,700,800,900';
}
if('off' !== $roboto){
$font_family[] = 'Roboto:400,700';
}
if('off' !== $roboto_cond){
$font_family[] = 'Roboto Condensed:400,700';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
/* Theme enqueue scripts */
function bb_mobile_application_scripts() {
wp_enqueue_style( 'bb-mobile-application-font', bb_mobile_application_font_url(), array() );
wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css' );
wp_enqueue_style( 'bb-mobile-application-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'bb-mobile-application-effect', get_template_directory_uri().'/css/effect.css' );
if ( is_home() || is_front_page() ) {
wp_enqueue_style( 'jquery-nivo-slider', get_template_directory_uri().'/css/nivo-slider.css' );
wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'bb-mobile-application-custom-front', get_template_directory_uri() . '/js/custom-front.js', array('jquery') ,'',true);
}
wp_enqueue_script( 'bb-mobile-application-customscripts', get_template_directory_uri() . '/js/custom.js', array('jquery') );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
/** 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('bb-mobile-application-ie', get_template_directory_uri().'/css/ie.css', array('bb-mobile-application-ie-style'));
wp_style_add_data( 'bb-mobile-application-ie', 'conditional', 'IE' );
}
add_action( 'wp_enqueue_scripts', 'bb_mobile_application_scripts' );
/* Custom template tags for this theme. */
require get_template_directory() . '/inc/template-tags.php';
/* Customizer additions. */
require get_template_directory() . '/inc/customizer.php';
?>