Make WordPress Core

Ticket #57069: 57069.10.patch

File 57069.10.patch, 3.5 KB (added by upadalavipul, 22 months ago)

Added one more patch

  • themes/twentyeleven/content-featured.php

     
    55 * @package WordPress
    66 * @subpackage Twenty_Eleven
    77 * @since Twenty Eleven 1.0
     8 *
     9 * @global $feature_class.
    810 */
    911
    1012global $feature_class;
  • themes/twentyeleven/functions.php

     
    596596         * Display navigation to next/previous pages when applicable.
    597597         *
    598598         * @since Twenty Eleven 1.0
     599         *
     600         * @global WP_Query $wp_query WordPress Query object.
    599601         *
    600602         * @param string $html_id The HTML id attribute.
    601603         */
  • themes/twentythirteen/functions.php

     
    375375 * in head of document, based on current view.
    376376 *
    377377 * @since Twenty Thirteen 1.0
     378 *
     379 * @global int $paged WordPress archive pagination page count.
     380 * @global int $page  WordPress paginated post page count.
    378381 *
    379382 * @param string $title Default title text for current view.
    380383 * @param string $sep   Optional separator.
     
    457460         * Display navigation to next/previous set of posts when applicable.
    458461         *
    459462         * @since Twenty Thirteen 1.0
     463         *
     464         * @global WP_Query $wp_query WordPress Query object.
     465         *
    460466         */
    461467        function twentythirteen_paging_nav() {
    462468                global $wp_query;
  • themes/twentytwelve/functions.php

     
    186186 * Enqueue scripts and styles for front end.
    187187 *
    188188 * @since Twenty Twelve 1.0
     189 *
     190 * @global $wp_styles
     191 *
    189192 */
    190193function twentytwelve_scripts_styles() {
    191194        global $wp_styles;
     
    292295 * for output in head of document, based on current view.
    293296 *
    294297 * @since Twenty Twelve 1.0
     298 *
     299 * @global int $paged WordPress archive pagination page count.
     300 * @global int $page  WordPress paginated post page count.
    295301 *
    296302 * @param string $title Default title text for current view.
    297303 * @param string $sep Optional separator.
     
    403409         * Displays navigation to next/previous pages when applicable.
    404410         *
    405411         * @since Twenty Twelve 1.0
     412         *
     413         * @global WP_Query $wp_query WordPress Query object.
     414         *
    406415         */
    407416        function twentytwelve_content_nav( $html_id ) {
    408417                global $wp_query;
  • themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php

     
    264264         * Determine if we want to print the dark-mode switch or not.
    265265         *
    266266         * @since Twenty Twenty-One 1.0
     267         *
     268         * @global $is_IE.
    267269         *
    268270         * @return bool
    269271         */
  • themes/twentytwentyone/functions.php

     
    393393 * Enqueue scripts and styles.
    394394 *
    395395 * @since Twenty Twenty-One 1.0
     396 *
     397 * @global $is_IE.
     398 * @global $wp_scripts.
    396399 *
    397400 * @return void
    398401 */