File: /home/storage/162/3480162/user/htdocs/wp-content/themes/colormag/inc/colormag-content-width.php
<?php
/**
* ColorMag template redirect hooks.
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* 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 colormag_set_content_width() {
// This variable is intended to be overruled from themes.
// Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
$GLOBALS['content_width'] = apply_filters( 'colormag_set_content_width', 800 );
}
add_action( 'after_setup_theme', 'colormag_set_content_width', 0 );
/**
* $content_width global variable adjustment as per layout option.
*/
function colormag_content_width() {
global $post;
global $content_width;
if ( $post ) {
$layout_meta = get_post_meta( $post->ID, 'colormag_page_layout', true );
}
if ( is_home() ) {
$queried_id = get_option( 'page_for_posts' );
$layout_meta = get_post_meta( $queried_id, 'colormag_page_layout', true );
}
if ( empty( $layout_meta ) || is_archive() || is_search() ) {
$layout_meta = 'default_layout';
}
$colormag_default_layout = get_theme_mod( 'colormag_default_layout', 'right_sidebar' );
$colormag_default_page_layout = get_theme_mod( 'colormag_default_page_layout', 'right_sidebar' );
$colormag_default_post_layout = get_theme_mod( 'colormag_default_single_posts_layout', 'right_sidebar' );
if ( 'default_layout' === $layout_meta ) {
if ( is_page() ) {
if ( 'no_sidebar_full_width' === $colormag_default_page_layout ) {
$content_width = 1140; /* pixels */
}
} elseif ( is_single() ) {
if ( 'no_sidebar_full_width' === $colormag_default_post_layout ) {
$content_width = 1140; /* pixels */
}
} else {
if ( 'no_sidebar_full_width' === $colormag_default_layout ) {
$content_width = 1140; /* pixels */
}
}
} else {
if ( 'no_sidebar_full_width' === $layout_meta ) {
$content_width = 1140; /* pixels */
}
}
}
add_action( 'template_redirect', 'colormag_content_width' );