Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-content/themes/meta-news/inc
NameTypeSizeActions
📁 .. Folder -
📄 custom-header.php File 2011
Edit Download
📄 customizer.php File 42887
Edit Download
📄 functions.php File 7301
Edit Download
📄 meta-news-default-option.php File 6673
Edit Download
📄 meta-news-footer-info.php File 1304
Edit Download
📄 meta-news-metaboxes.php File 3381
Edit Download
📄 template-functions.php File 2293
Edit Download
📁 tgm Folder -
📁 theme-info Folder -
📁 widgets Folder -

View File: template-functions.php

<?php
/**
 * Functions which enhance the theme by hooking into WordPress
 *
 * @package Meta News
 */

/**
 * Adds custom classes to the array of body classes.
 *
 * @param array $classes Classes for the body element.
 * @return array
 */
function meta_news_body_classes( $classes ) {
	$meta_news_settings = meta_news_get_option_defaults();

	// Adds a class of group-blog to blogs with more than 1 published author.
	if ( is_multi_author() ) {
		$classes[] = 'group-blog';
	}

	// Adds a class of hfeed to non-singular pages.
	if ( ! is_singular() ) {
		$classes[] = 'hfeed';
	}

	if ( has_header_video() && has_header_image() ) {
		if ( is_front_page() && is_home() ) {
			$classes[] = '';
		} elseif ( is_front_page() ) {
			$classes[] = '';
		} else {
			$classes[] = 'header-image';
		}
	} elseif ( has_header_image() ) {
		$classes[] = 'header-image';
	}

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

/**
 * Add a pingback url auto-discovery header for single posts, pages, or attachments.
 */
function meta_news_pingback_header() {
	if ( is_singular() && pings_open() ) {
		echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
	}
}
add_action( 'wp_head', 'meta_news_pingback_header' );

function meta_news_sidebar_content() {

	$meta_news_settings = meta_news_get_option_defaults();

	global $post;
	if ($post) {
		$meta_news_meta_layout = get_post_meta($post->ID, 'meta_news_sidebarlayout', true);
	}
	$meta_news_custom_layout = $meta_news_settings['meta_news_content_layout'];

	if ( empty($meta_news_meta_layout) || is_archive() || is_search() || is_home() ) {
		$meta_news_meta_layout = 'default';
	}
	
		if ( 'default' == $meta_news_meta_layout ) {
			if ( 'right' == $meta_news_custom_layout ) {
				get_sidebar(); //used sidebar.php
			}
			elseif ( 'left' == $meta_news_custom_layout ) {
				get_sidebar('left'); //used sidebar-left.php
			}
			else {
				return; // doesnot display sidebar
			}
		}
		elseif ( 'meta-right' == $meta_news_meta_layout ) {
			get_sidebar(); //used sidebar.php
		}
		elseif ( 'meta-left' == $meta_news_meta_layout ) {
			get_sidebar('left'); //used sidebar-left.php
		}
		else {
			return; // doesnot display sidebar
		}
}
add_action( 'meta_news_sidebar', 'meta_news_sidebar_content');