You appear to be a bot. Output may be restricted
Description
Set the content width in pixels, based on the theme's design and stylesheet.
Priority 0 to make it available to lower priority callbacks.
Usage
$void = twenty_twenty_one_content_width();
Parameters
Returns
void
Source
File name: twentytwentyone/functions.php
Lines:
1 to 6 of 6
function twenty_twenty_one_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( 'twenty_twenty_one_content_width', 750 ); }