Make WordPress Core

Ticket #63889: 63889.patch

File 63889.patch, 731 bytes (added by viralsampat, 9 months ago)

I have checked above mentioned issue and resolved it. Here, I have added my patch.

  • src/wp-content/themes/twentysixteen/functions.php

    diff --git src/wp-content/themes/twentysixteen/functions.php src/wp-content/themes/twentysixteen/functions.php
    index 49b3f2cb9a..1a36f12f30 100644
    add_action( 'after_setup_theme', 'twentysixteen_setup' ); 
    240240 * Sets the content width in pixels, based on the theme's design and stylesheet.
    241241 *
    242242 * Priority 0 to make it available to lower priority callbacks.
    243  *
    244  * @global int $content_width
    245  *
     243 *
    246244 * @since Twenty Sixteen 1.0
     245 *
     246 * @global int $content_width
     247 *
    247248 */
    248249function twentysixteen_content_width() {
    249250        $GLOBALS['content_width'] = apply_filters( 'twentysixteen_content_width', 840 );