__( 'Primary Menu', 'lawyer-hub' ), ) ); // Add theme support for Custom Logo. add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); /* * 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',) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'assets/css/editor-style.css', lawyer_hub_fonts_url() ) ); } add_action( 'after_setup_theme', 'lawyer_hub_setup' ); /** * Register custom fonts. */ function lawyer_hub_fonts_url(){ $font_url = ''; $font_family = array(); $font_family[] = 'KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700'; $font_family[] = 'Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900'; $query_args = array( 'family' => rawurlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); return $font_url; } /** * Register widget area. */ function lawyer_hub_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'lawyer-hub' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'lawyer-hub' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'lawyer-hub' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'lawyer-hub' ), 'id' => 'footer-1', 'description' => __( 'Add widgets here to appear in your footer.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'lawyer-hub' ), 'id' => 'footer-2', 'description' => __( 'Add widgets here to appear in your footer.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'lawyer-hub' ), 'id' => 'footer-3', 'description' => __( 'Add widgets here to appear in your footer.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'lawyer-hub' ), 'id' => 'footer-4', 'description' => __( 'Add widgets here to appear in your footer.', 'lawyer-hub' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'lawyer_hub_widgets_init' ); /** * Enqueue scripts and styles. */ function lawyer_hub_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'lawyer-hub-fonts', lawyer_hub_fonts_url(), array(), null ); // Bootstrap wp_enqueue_style( 'bootstrap-css', get_theme_file_uri( '/assets/css/bootstrap.css' ) ); // Theme stylesheet. wp_enqueue_style( 'lawyer-hub-style', get_stylesheet_uri() ); require get_parent_theme_file_path( '/tp-body-width-layout.php' ); wp_add_inline_style( 'lawyer-hub-style',$lawyer_hub_tp_theme_css ); wp_style_add_data('lawyer-hub-style', 'rtl', 'replace'); // Theme block stylesheet. wp_enqueue_style( 'lawyer-hub-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'lawyer-hub-style' ), '1.0' ); // Fontawesome wp_enqueue_style( 'fontawesome-css', get_theme_file_uri( '/assets/css/fontawesome-all.css' ) ); if(!wp_is_mobile()){ wp_enqueue_script( 'jquery-superfish', get_theme_file_uri( '/assets/js/jquery.superfish.js' ), array( 'jquery' ), '2.1.2', true ); wp_enqueue_script( 'lawyer-hub-custom-scripts-superfish', get_theme_file_uri( '/assets/js/lawyer-hub-custom-superfish.js' ), array( 'jquery' ), true ); } wp_enqueue_script( 'bootstrap-js', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ), true ); wp_enqueue_script( 'lawyer-hub-custom-scripts', esc_url( get_template_directory_uri() ) . '/assets/js/lawyer-hub-custom.js', array('jquery'), true); wp_enqueue_script( 'lawyer-hub-focus-nav', esc_url( get_template_directory_uri() ) . '/assets/js/focus-nav.js', array('jquery'), true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'lawyer_hub_scripts' ); //Admin Enqueue for Admin function lawyer_hub_admin_enqueue_scripts(){ wp_enqueue_style('lawyer-hub-admin-style', esc_url( get_template_directory_uri() ) . '/assets/css/admin.css'); } add_action( 'admin_enqueue_scripts', 'lawyer_hub_admin_enqueue_scripts' ); /*radio button sanitization*/ function lawyer_hub_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; } } /* Excerpt Limit Begin */ function lawyer_hub_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } function lawyer_hub_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 ); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'lawyer_hub_loop_columns'); if (!function_exists('lawyer_hub_loop_columns')) { function lawyer_hub_loop_columns() { $columns = get_theme_mod( 'lawyer_hub_per_columns', 3 ); return $columns; } } function lawyer_hub_sanitize_phone_number( $phone ) { return preg_replace( '/[^\d+]/', '', $phone ); } //Change number of products that are displayed per page (shop page) add_filter( 'loop_shop_per_page', 'lawyer_hub_per_page', 20 ); function lawyer_hub_per_page( $cols ) { $cols = get_theme_mod( 'lawyer_hub_product_per_page', 9 ); return $cols; } function lawyer_hub_sanitize_number_range( $number, $setting ) { // Ensure input is an absolute integer. $number = absint( $number ); // Get the input attributes associated with the setting. $atts = $setting->manager->get_control( $setting->id )->input_attrs; // Get minimum number in the range. $min = ( isset( $atts['min'] ) ? $atts['min'] : $number ); // Get maximum number in the range. $max = ( isset( $atts['max'] ) ? $atts['max'] : $number ); // Get step. $step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); // If the number is within the valid range, return it; otherwise, return the default return ( $min <= $number && $number <= $max && is_int( $number / $step ) ? $number : $setting->default ); } function lawyer_hub_sanitize_checkbox( $input ) { // Boolean check return ( ( isset( $input ) && true == $input ) ? true : false ); } function lawyer_hub_sanitize_number_absint( $number, $setting ) { // Ensure $number is an absolute integer (whole number, zero or greater). $number = absint( $number ); // If the input is an absolute integer, return it; otherwise, return the default return ( $number ? $number : $setting->default ); } /** * Use front-page.php when Front page displays is set to a static page. */ function lawyer_hub_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template','lawyer_hub_front_page_template' ); /** * Logo Custamization. */ function lawyer_hub_logo_width(){ $lawyer_hub_logo_width = get_theme_mod( 'lawyer_hub_logo_width', 150 ); echo ""; } add_action( 'wp_head', 'lawyer_hub_logo_width' ); function lawyer_hub_activation_notice() { ?>

'. wp_get_theme()->get('Name'). '' ); ?>

', '', '' ); ?>
".esc_html__('Lawyer Hub WordPress Theme ','lawyer-hub').""; } }