business_lawyer_firm_add( 'WPTRT\\Customize\\Section', get_theme_file_path( 'vendor/wptrt/customize-section-button/src' ) );
$Business_Lawyer_Firm_Loader->business_lawyer_firm_register();
if ( ! function_exists( 'business_lawyer_firm_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function business_lawyer_firm_setup() {
add_theme_support( 'woocommerce' );
add_theme_support( "responsive-embeds" );
add_theme_support( "align-wide" );
add_theme_support( "wp-block-styles" );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded
tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
add_image_size('business-lawyer-firm-featured-header-image', 2000, 660, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary','business-lawyer-firm' ),
'footer'=> esc_html__( 'Footer Menu','business-lawyer-firm' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'business_lawyer_firm_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 50,
'width' => 50,
'flex-width' => true,
) );
add_editor_style( array( '/editor-style.css' ) );
}
endif;
add_action( 'after_setup_theme', 'business_lawyer_firm_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function business_lawyer_firm_content_width() {
$GLOBALS['content_width'] = apply_filters( 'business_lawyer_firm_content_width', 1170 );
}
add_action( 'after_setup_theme', 'business_lawyer_firm_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function business_lawyer_firm_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'business-lawyer-firm' ),
'id' => 'sidebar',
'description' => esc_html__( 'Add widgets here.', 'business-lawyer-firm' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Front Page Sidebar', 'business-lawyer-firm' ),
'id' => 'front-sidebar',
'description' => esc_html__( 'Add widgets here.', 'business-lawyer-firm' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'business_lawyer_firm_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function business_lawyer_firm_scripts() {
wp_enqueue_style('business-lawyer-firm-font', business_lawyer_firm_font_url(), array());
wp_enqueue_style( 'business-lawyer-firm-block-editor-style', get_theme_file_uri('/assets/css/block-editor-style.css') );
// load bootstrap css
wp_enqueue_style( 'flatly-css', esc_url(get_template_directory_uri()) . '/assets/css/flatly.css');
wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri()) . '/assets/css/owl.carousel.css');
wp_enqueue_style( 'business-lawyer-firm-style', get_stylesheet_uri() );
wp_style_add_data('business-lawyer-firm-style', 'rtl', 'replace');
// fontawesome
wp_enqueue_style( 'fontawesome-style', esc_url(get_template_directory_uri()).'/assets/css/fontawesome/css/all.css' );
wp_enqueue_script('business-lawyer-firm-theme-js', esc_url(get_template_directory_uri()) . '/assets/js/theme-script.js', array('jquery'), '', true );
wp_enqueue_script('owl.carousel-js', esc_url(get_template_directory_uri()) . '/assets/js/owl.carousel.js', array('jquery'), '', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'business_lawyer_firm_scripts' );
function business_lawyer_firm_font_url(){
$font_url = '';
$lato = _x('on','Lato:on or off','business-lawyer-firm');
$roboto = _x('on','Roboto:on or off','business-lawyer-firm');
if('off' !== $lato ){
$font_family = array();
if('off' !== $lato){
$font_family[] = 'Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900';
}
if('off' !== $roboto){
$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' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/*radio button sanitization*/
function business_lawyer_firm_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;
}
}
/*dropdown page sanitization*/
function business_lawyer_firm_sanitize_dropdown_pages( $page_id, $setting ) {
$page_id = absint( $page_id );
return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default );
}
function business_lawyer_firm_gt_get_post_view() {
$count = get_post_meta( get_the_ID(), 'post_views_count', true );
return "$count views";
}
function business_lawyer_firm_gt_set_post_view() {
$key = 'post_views_count';
$post_id = get_the_ID();
$count = (int) get_post_meta( $post_id, $key, true );
$count++;
update_post_meta( $post_id, $key, $count );
}
function business_lawyer_firm_gt_posts_column_views( $columns ) {
$columns['post_views'] = 'Views';
return $columns;
}
function business_lawyer_firm_gt_posts_custom_column_views( $column ) {
if ( $column === 'post_views') {
echo esc_html(business_lawyer_firm_gt_get_post_view());
}
}
add_filter( 'manage_posts_columns', 'business_lawyer_firm_gt_posts_column_views' );
add_action( 'manage_posts_custom_column', 'business_lawyer_firm_gt_posts_custom_column_views' );