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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'artimusic' ), ) ); add_image_size( 'artimusic-blog-thumbnail-img', 650, 450, true); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'artimusic_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' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } add_action( 'after_setup_theme', 'artimusic_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 artimusic_content_width() { $GLOBALS['content_width'] = apply_filters( 'artimusic_content_width', 640 ); } add_action( 'after_setup_theme', 'artimusic_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function artimusic_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'artimusic' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'artimusic' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); for ($i = 1; $i <= 3; $i++) { register_sidebar(array( 'name' => esc_html__('artimusic Footer Widget', 'artimusic') . $i, 'id' => 'artimusic_footer_' . $i, 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } } add_action( 'widgets_init', 'artimusic_widgets_init' ); /** * Enqueue scripts and styles. */ function artimusic_scripts() { wp_enqueue_style( 'artimusic-style', get_stylesheet_uri() ); wp_enqueue_style( 'artimusic-font', artimusic_fonts(), array(), null); wp_enqueue_style( 'artimusic-bootstrapcss', get_template_directory_uri() . '/assets/css/bootstrap.css', array(), '1.0' ); wp_enqueue_style( 'artimusic-fontawesome', get_template_directory_uri() . '/assets/fontawesome/css/all.css', array(), '1.0' ); wp_enqueue_style( 'artimusic-aos', get_template_directory_uri() . '/assets/css/aos.css', array(), '1.0' ); wp_enqueue_style( 'artimusic-css', get_template_directory_uri() . '/assets/css/artimusic.css', array(), '1.0' ); wp_enqueue_style( 'artimusic-media-queries', get_template_directory_uri() . '/assets/css/media-queries.css', array(), '1.0' ); wp_enqueue_script( 'artimusic-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '1.0', true); wp_enqueue_script( 'artimusic-aos-js', get_template_directory_uri() . '/assets/js/aos.js', array('jquery'), '1.0', true); wp_enqueue_script( 'artimusic-counter-js', get_template_directory_uri() . '/assets/js/loopcounter.js', array('jquery'), '1.0', true); wp_enqueue_script( 'artimusic-custom-script', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), '1.0', true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'artimusic_scripts',99 ); function artimusic_enqueue_styles() { wp_enqueue_style('artimusic-welcome-style', get_template_directory_uri() . '/welcome/welcome.css', array(), '1.0' ); wp_enqueue_script( 'artimusic-welcome-script', get_template_directory_uri() . '/welcome/welcome-script.js', array('jquery'), '1.0', true); } add_action('admin_enqueue_scripts', 'artimusic_enqueue_styles'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; require get_template_directory() . '/plugin-activation.php'; require get_template_directory() . '/lib/artimusic-tgmp.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; require get_template_directory() . '/inc/artimusic-customizer-default.php'; require get_template_directory() . '/inc/customize-control.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } if (!function_exists('artimusic_fonts')) : function artimusic_fonts() { $fonts_url = ''; $fonts = array(); if ('off' !== _x('on', 'Unbounded font: on or off', 'artimusic')) { $fonts[] = 'Unbounded:600,700'; } if ('off' !== _x('on', 'Montserrat: on or off', 'artimusic')) { $fonts[] = 'Montserrat:500'; } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urlencode(implode('|', $fonts)), ), '//fonts.googleapis.com/css'); } return $fonts_url; } endif; if(!function_exists('artimusic_blog_get_category')) { function artimusic_blog_get_category() { $terms = get_terms('category',array( 'hide_empty' => true, )); $options = ['' => '']; foreach ($terms as $t) { $options[$t->term_id] = $t->name; } return $options; } } if (!function_exists('artimusic_get_excerpt')) : function artimusic_get_excerpt($post_id, $count) { $content_post = get_post($post_id); $excerpt = $content_post->post_content; $excerpt = strip_shortcodes($excerpt); $regex = array ( '/]*>.*?<\/h2>/i', '/]*>.*?<\/h1>/i', '/]*>.*?<\/h3>/i', '/]*>.*?<\/h4>/i', '/]*>.*?<\/h5>/i', '/]*>.*?<\/h6>/i', ); $excerpt = preg_replace($regex, '', $excerpt); $excerpt = strip_tags($excerpt); $excerpt = preg_replace('/\s\s+/', ' ', $excerpt); $excerpt = preg_replace('#\[[^\]]+\]#', ' ', $excerpt); $strip = explode(' ', $excerpt); foreach ($strip as $key => $single) { if (!filter_var($single, FILTER_VALIDATE_URL) === false) { unset($strip[$key]); } } $excerpt = implode(' ', $strip); $excerpt = substr($excerpt, 0, $count); if (strlen($excerpt) >= $count) { $excerpt = substr($excerpt, 0, strripos($excerpt, ' ')); $excerpt = $excerpt . '...'; } return $excerpt; } endif; if (!function_exists('artimusic_blank_widget')) { function artimusic_blank_widget() { echo '
'; if (is_user_logged_in() && current_user_can('edit_theme_options')) { echo '' . esc_html__('Add Footer Widget', 'artimusic') . ''; } echo '
'; } } // Add admin notice function artimusic_admin_notice() { global $pagenow; $theme_args = wp_get_theme(); $meta = get_option( 'artimusic_admin_notice' ); $name = $theme_args->__get( 'Name' ); $current_screen = get_current_screen(); if( 'themes.php' == $pagenow && !$meta ){ if( is_network_admin() ){ return; } if( ! current_user_can( 'manage_options' ) ){ return; } ?>