Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/09/2011 09:19:26 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Better handling of title attributes. Props GautamGupta via Google Code-in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-hooks.php

    r2786 r2788  
    7373
    7474// Template - Head, foot, errors and notices
    75 add_action( 'wp_head',              'bbp_head'           );
    76 add_action( 'wp_footer',            'bbp_footer'         );
    77 add_action( 'bbp_template_notices', 'bbp_error_messages' );
    78 add_action( 'bbp_template_notices', 'bbp_topic_notices'  );
     75add_action( 'wp_head',              'bbp_head'                 );
     76add_filter( 'wp_title',             'bbp_title',         10, 3 );
     77add_action( 'wp_footer',            'bbp_footer'               );
     78add_action( 'bbp_template_notices', 'bbp_error_messages'       );
     79add_action( 'bbp_template_notices', 'bbp_topic_notices'        );
    7980
    8081// Caps & Roles
     
    9293
    9394// Profile Page
    94 add_filter( 'wp_title',          'bbp_profile_page_title',     10, 3 );
    95 add_action( 'pre_get_posts',     'bbp_pre_get_posts',          1     );
    96 add_action( 'template_redirect', 'bbp_edit_user_handler',      1     );
     95add_action( 'pre_get_posts',     'bbp_pre_get_posts',     1 );
     96add_action( 'template_redirect', 'bbp_edit_user_handler', 1 );
    9797
    9898// Profile Page Messages
Note: See TracChangeset for help on using the changeset viewer.