Making WordPress.org

Ticket #2864: 2864.patch

File 2864.patch, 1.6 KB (added by SergeyBiryukov, 7 years ago)
  • wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-directory.php

     
    4343                add_filter( 'single_term_title', array( $this, 'filter_single_term_title' ) );
    4444                add_filter( 'the_content', array( $this, 'filter_rel_nofollow' ) );
    4545                add_action( 'wp_head', array( Template::class, 'json_ld_schema' ), 1 );
     46                add_action( 'wp_head', array( Template::class, 'meta_description' ), 1 );
    4647                add_action( 'wp_head', array( Template::class, 'hreflang_link_attributes' ), 2 );
    4748
    4849                // Cron tasks.
  • wordpress.org/public_html/wp-content/plugins/plugin-directory/class-template.php

     
    119119        }
    120120
    121121        /**
     122         * Prints meta description in the head of a page.
     123         *
     124         * @static
     125         */
     126        public static function meta_description() {
     127                if ( is_singular( 'plugin' ) ) {
     128                        printf( '<meta name="description" value="%s"/>',
     129                                esc_attr( get_the_excerpt( get_queried_object() ) )
     130                        );
     131                }
     132        }
     133
     134        /**
    122135         * Returns a string representing the number of active installs for an item.
    123136         *
    124137         * @static