esc_html__('Primary Menu', 'businest'), ) ); add_theme_support('editor-styles'); add_editor_style('style-editor.css'); } # Enqueue Scripts add_action( 'wp_enqueue_scripts', 'businest_load_scripts' ); function businest_load_scripts() { wp_enqueue_style( 'businest-style', get_stylesheet_uri(), array(), '' ); wp_style_add_data( 'businest-style', 'rtl', 'replace' ); # CSS wp_enqueue_style('businest-main-style', get_template_directory_uri() . '/style.css', array(), '1.2.0'); wp_enqueue_style('businest-custom-style', get_template_directory_uri() . '/assets/css/custom-style.css', array(), '1.2.0'); # JS wp_localize_script( 'businest-scripts', 'businest', array( 'ajaxurl' => esc_url( admin_url('admin-ajax.php') ) )); if ( is_singular() && get_option('thread_comments') ) { wp_enqueue_script('comment-reply'); } } # Set businest Content Width if ( ! isset( $content_width ) ) { $content_width = 1170; } /* -------------------------------------------------- */ function businest_stringModify($string, $start, $limit) { $str = trim(strip_tags($string)); if($limit) { $str = trim(substr($str, $start, $limit)); if(strlen($string)>$limit) $str .= '...'; } return $str; } # businest Pagination function businest_pagination() { if ( get_the_posts_pagination() ) : ?>
'', 'next_text' => '' ); the_posts_pagination($args); ?>
esc_html__('Sidebar', 'businest'), 'id' => 'sidebar', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' )); } # Language load_theme_textdomain( 'businest', get_template_directory() . '/languages' ); /* -------------------------------------------------- */