/** * shale functions and definitions * * Set up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @link https://codex.wordpress.org/Theme_Development * @link https://codex.wordpress.org/Child_Themes * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://codex.wordpress.org/Plugin_API} */ /** * Set the content width based on the theme's design and stylesheet. * * @since shale 1.0 */ if ( ! isset( $content_width ) ) { $content_width = 660; } if ( ! function_exists( 'shale_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. * * @since shale 1.0 */ function shale_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. */ load_theme_textdomain( 'shale', get_template_directory() . '/languages' ); // 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. * * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // Add custom logo support add_theme_support( 'custom-logo' ); // Add custom header support $custom_header_args = array( 'flex-width' => true, 'width' => 1260, 'flex-height' => true, 'height' => 200, 'header-text' => false, ); add_theme_support( 'custom-header', $custom_header_args ); // Add custom background support add_theme_support( "custom-background" ); // Add new image sizes add_image_size( 'shale-featured-image', 710, 470, array( 'left', 'center' ) ); // This theme uses wp_nav_menu() in one locations. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'shale' ), ) ); /* * 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' ) ); } endif; // shale_setup add_action( 'after_setup_theme', 'shale_setup' ); /** * Register widget area. * * @since shale 1.0 * * @link https://codex.wordpress.org/Function_Reference/register_sidebar */ function shale_widgets_init() { register_sidebar( array( 'name' => __( 'Right Sidebar', 'shale' ), 'id' => 'sidebar-right', 'description' => __( 'Add widgets here to appear in your sidebar.', 'shale' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer', 'shale' ), 'id' => 'sidebar-footer', 'description' => __( 'Add widgets here to appear in your footer.', 'shale' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'shale_widgets_init' ); /** * JavaScript Detection. * * Adds a `js` class to the root `<html>` element when JavaScript is detected. * * @since shale 1.0 */ function shale_javascript_detection() { echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n"; } add_action( 'wp_head', 'shale_javascript_detection', 0 ); /** * Enqueue scripts and styles. * * @since shale 1.0 */ function shale_scripts() { // Scripts wp_enqueue_script( 'shale-modernizr', get_template_directory_uri() . '/assets/js/modernizr-custom.js', array( 'jquery' ), '3.2.0', true ); wp_enqueue_script( 'fitvids', get_template_directory_uri() . '/assets/js/jquery.fitvids.js', array( 'jquery' ), '1.0.3', true ); wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/assets/js/jquery.flexslider.js', array( 'jquery' ), '2.6.0', true ); wp_enqueue_script( 'shale-shale', get_template_directory_uri() . '/assets/js/shale.js', array( 'jquery' ), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Stylesheets wp_enqueue_style( 'font-awesome-css', get_template_directory_uri() . '/assets/css/font-awesome.css', false, '4.6.3','all' ); wp_enqueue_style( 'flexslider-css', get_template_directory_uri() . '/assets/css/flexslider.css', false, '2.6.0','all' ); wp_enqueue_style( 'shale-css', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'shale_scripts' ); /* Editor Style Sheet */ function shale_add_editor_style() { add_editor_style( 'assets/css/custom-editor-style.css' ); } add_action( 'after_setup_theme', 'shale_add_editor_style' ); /** * Add Google Fonts */ function shale_add_google_fonts() { wp_enqueue_style( 'shale-google-fonts', 'http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,700|Open+Sans:700', false ); } add_action( 'wp_enqueue_scripts', 'shale_add_google_fonts' ); /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function shale_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url' ) ); } } add_action( 'wp_head', 'shale_pingback_header' ); /** * Remove duplicate posts from main query if slider active */ function shale_exclude_slider_posts( $query ) { $enabled = get_theme_mod( 'enable_slider' ); $remove_stickies = get_theme_mod( 'remove_stickies' ); if ( $enabled && $remove_stickies && $query->is_home() && $query->is_main_query() ) { $query->set( 'post__not_in', get_option( 'sticky_posts' ) ); } } add_action( 'pre_get_posts', 'shale_exclude_slider_posts' ); /** Add Sidebar Class if Sidebar active */ function shale_body_classes( $classes ) { if ( is_active_sidebar( 'sidebar-right' ) ) { $classes[] = 'sidebar-right'; } else { $classes[] = 'no-sidebar-right'; } return $classes; } add_filter( 'body_class','shale_body_classes' ); /** * Custom template tags for this theme. * * @since shale 1.0 */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom Options. * * @since shale 1.0 */ require get_template_directory() . '/inc/customizer.php'; <!DOCTYPE HTML> <html lang="en-US" prefix="og: http://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.4.2 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://360mediazine.com" /> <link rel="next" href="https://360mediazine.com/page/2/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="360mediazine -" /> <meta property="og:url" content="https://360mediazine.com" /> <meta property="og:site_name" content="360mediazine" /> <!-- / Yoast WordPress SEO plugin. --> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="wp-block-library-inline-css"> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ </style> <style id="classic-theme-styles-inline-css"> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <script id="jquery-core-js" src="https://360mediazine.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" src="https://360mediazine.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="wcf_front.js-js" src="https://360mediazine.com/wp-content/plugins/wp-fast-start/modules/js/front.js?ver=1.0"></script> <link rel="https://api.w.org/" href="https://360mediazine.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://360mediazine.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0" /> <style id="wp-custom-css"> .developer-credit{ display:none } </style> </head> <body class="home blog wp-theme-shale"> <div id="page" class="site"><div id="page-wrapper-inner"> <div class="site-navigation clearfix" role="navigation"> <nav id="nav" class="site-nav" role="navigation"><div class="container"> <a href="#nav" class="close-nav" title="Close navigation"></a> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="nav-menu"><li id="menu-item-11" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-11"><a href="https://360mediazine.com/">Home</a></li> <li id="menu-item-12" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12"><a href="https://360mediazine.com/about/">About</a></li> <li id="menu-item-13" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13"><a href="https://360mediazine.com/contact/">Contact</a></li> <li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14"><a href="https://360mediazine.com/privacy-policy-2/">Privacy Policy</a></li> </ul></div> </div></nav><!-- .main-navigation --> </div><!-- .site-navigation --> <header id="masthead" class="site-header clearfix" role="banner"> <div class="site-header-inner container"> <div class="site-branding clearfix">