Making WordPress.org


Ignore:
Timestamp:
12/08/2016 12:38:26 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Use proper document titles throughout.

Props joostdevalk, ocean90.
Fixes #2314.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php

    r4481 r4504  
    3838        'caption',
    3939    ) );
    40 
    4140}
    4241add_action( 'after_setup_theme', __NAMESPACE__ . '\setup' );
     
    275274    return '<strong>' . $term . '</strong>';
    276275}
    277 add_filter( 'post_type_archive_title', __NAMESPACE__ . '\strong_archive_title' );
    278 add_filter( 'single_term_title',       __NAMESPACE__ . '\strong_archive_title' );
    279 add_filter( 'single_cat_title',        __NAMESPACE__ . '\strong_archive_title' );
    280 add_filter( 'single_tag_title',        __NAMESPACE__ . '\strong_archive_title' );
    281 add_filter( 'get_the_date',            __NAMESPACE__ . '\strong_archive_title' );
     276add_action( 'wp_head', function() {
     277    add_filter( 'post_type_archive_title', __NAMESPACE__ . '\strong_archive_title' );
     278    add_filter( 'single_term_title',       __NAMESPACE__ . '\strong_archive_title' );
     279    add_filter( 'single_cat_title',        __NAMESPACE__ . '\strong_archive_title' );
     280    add_filter( 'single_tag_title',        __NAMESPACE__ . '\strong_archive_title' );
     281    add_filter( 'get_the_date',            __NAMESPACE__ . '\strong_archive_title' );
     282} );
    282283
    283284/**
Note: See TracChangeset for help on using the changeset viewer.