__( 'Top Menu', 'aagaz-startup' ),
) );
/*
* Enable support for Post Formats.
*
* See: https://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array('image','video','gallery','audio',) );
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
add_theme_support( 'custom-logo', array(
'width' => 250,
'height' => 250,
'flex-width' => true,
) );
add_theme_support( 'custom-background', array(
'default-color' => 'f1f1f1'
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
add_editor_style( array( 'assets/css/editor-style.css', aagaz_startup_fonts_url() ) );
}
add_action( 'after_setup_theme', 'aagaz_startup_setup' );
/**
* Register custom fonts.
*/
function aagaz_startup_fonts_url(){
$font_url = '';
$font_family = array();
$font_family[] = 'Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i';
$query_args = array(
'family' => rawurlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
return $font_url;
}
/**
* Widget area.
*/
function aagaz_startup_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'aagaz-startup' ),
'id' => 'sidebox-1',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Page Sidebar', 'aagaz-startup' ),
'id' => 'sidebox-2',
'description' => __( 'Add widgets here to appear in your sidebar on Pages and archive pages.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 1', 'aagaz-startup' ),
'id' => 'footer-1',
'description' => __( 'Add widgets here to appear in your footer.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 2', 'aagaz-startup' ),
'id' => 'footer-2',
'description' => __( 'Add widgets here to appear in your footer.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 3', 'aagaz-startup' ),
'id' => 'footer-3',
'description' => __( 'Add widgets here to appear in your footer.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 4', 'aagaz-startup' ),
'id' => 'footer-4',
'description' => __( 'Add widgets here to appear in your footer.', 'aagaz-startup' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'aagaz_startup_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function aagaz_startup_scripts() {
// Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'aagaz-startup-fonts', aagaz_startup_fonts_url(), array(), null );
//bootstrap
wp_enqueue_style( 'bootstrap', get_theme_file_uri( '/assets/css/bootstrap.css' ));
// Theme stylesheet.
wp_enqueue_style( 'aagaz-startup-basic-style', get_stylesheet_uri() );
//font-awesome
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/assets/css/fontawesome-all.css' );
// Load the html5 shiv.
wp_enqueue_script( 'html5', get_theme_file_uri( '/assets/js/html5.js' ), array(), '3.7.3' );
wp_script_add_data( 'html5', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'aagaz-startup-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array(), '1.0', true );
$aagaz_startupScreenReaderText=array();
if ( has_nav_menu( 'top' ) ) {
wp_enqueue_script( 'aagaz-startup-navigation-jquery', get_theme_file_uri( '/assets/js/navigation.js' ), array( 'jquery' ), '1.0', true );
$aagaz_startupScreenReaderText['expand'] = __( 'Expand child menu', 'aagaz-startup' );
$aagaz_startupScreenReaderText['collapse'] = __( 'Collapse child menu', 'aagaz-startup' );
}
wp_enqueue_script( 'jquery-custom', get_theme_file_uri( '/assets/js/custom.js' ), array( 'jquery' ), true );
wp_enqueue_script( 'bootstrap', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ), true );
require get_parent_theme_file_path( '/color-option.php' );
wp_add_inline_style( 'aagaz-startup-basic-style',$custom_css );
wp_localize_script( 'aagaz-startup-skip-link-focus-fix', 'aagaz_startupScreenReaderText', $aagaz_startupScreenReaderText );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'aagaz_startup_scripts' );
function aagaz_startup_sanitize_choices( $input, $setting ) {
global $wp_customize;
$control = $wp_customize->get_control( $setting->id );
if ( array_key_exists( $input, $control->choices ) ) {
return $input;
} else {
return $setting->default;
}
}
// Change number or products per row to 3
add_filter('loop_shop_columns', 'aagaz_startup_loop_columns');
if (!function_exists('aagaz_startup_loop_columns')) {
function aagaz_startup_loop_columns() {
return 3; // 3 products per row
}
}
/* Excerpt Limit Begin */
function aagaz_startup_string_limit_words($string, $word_limit) {
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
function aagaz_startup_sanitize_dropdown_pages( $page_id, $setting ) {
// Ensure $input is an absolute integer.
$page_id = absint( $page_id );
// If $page_id is an ID of a published page, return it; otherwise, return the default.
return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default );
}
//footer Link
define('AAGAZ_STARTUP_CREDIT','https://www.themeseye.com/wordpress/free-startup-wordpress-theme/','aagaz-startup');
if ( ! function_exists( 'aagaz_startup_credit' ) ) {
function aagaz_startup_credit(){
echo "".esc_html__(' Startup WordPress Theme','aagaz-startup')."";
}
}
require get_parent_theme_file_path( '/inc/custom-header.php' );
require get_parent_theme_file_path( '/inc/template-tags.php' );
require get_parent_theme_file_path( '/inc/template-functions.php' );
require get_parent_theme_file_path( '/inc/customizer.php' );