Make WordPress Core

Ticket #60224: 60224.3.patch

File 60224.3.patch, 2.3 KB (added by upadalavipul, 2 years ago)
  • themes/twentyeleven/functions.php

     
    636636         * Display navigation to next/previous pages when applicable.
    637637         *
    638638         * @since Twenty Eleven 1.0
     639         *
     640         * @global WP_Query $wp_query WordPress Query object.
    639641         *
    640642         * @param string $html_id The HTML id attribute.
    641643         */
  • themes/twentythirteen/functions.php

     
    483483         * Display navigation to next/previous set of posts when applicable.
    484484         *
    485485         * @since Twenty Thirteen 1.0
     486         *
     487         * @global WP_Query $wp_query WordPress Query object.
    486488         */
    487489        function twentythirteen_paging_nav() {
    488490                global $wp_query;
  • themes/twentytwelve/functions.php

     
    175175 * Enqueue scripts and styles for front end.
    176176 *
    177177 * @since Twenty Twelve 1.0
     178 *
     179 * @global WP_Styles $wp_styles
    178180 */
    179181function twentytwelve_scripts_styles() {
    180182        global $wp_styles;
     
    404406         * Displays navigation to next/previous pages when applicable.
    405407         *
    406408         * @since Twenty Twelve 1.0
     409         *
     410         * @global WP_Query $wp_query WordPress Query object.
    407411         */
    408412        function twentytwelve_content_nav( $html_id ) {
    409413                global $wp_query;
     
    623627 * templates, and when there are no active widgets in the sidebar.
    624628 *
    625629 * @since Twenty Twelve 1.0
     630 *
     631 * @global int $content_width Content width.
    626632 */
    627633function twentytwelve_content_width() {
    628634        if ( is_page_template( 'page-templates/full-width.php' ) || is_attachment() || ! is_active_sidebar( 'sidebar-1' ) ) {
  • themes/twentytwenty/functions.php

     
    3232 * as indicating support for post thumbnails.
    3333 *
    3434 * @since Twenty Twenty 1.0
     35 *
     36 * @global int $content_width Content width.
     37 *
    3538 */
    3639function twentytwenty_theme_support() {
    3740