Skip to:
Content

BuddyPress.org

Ticket #944: bp_pagetitles.patch

File bp_pagetitles.patch, 3.2 KB (added by junsuijin, 16 years ago)
  • bp-core/bp-core-templatetags.php

     
    17201720                return implode( ' ', $class );
    17211721        }
    17221722
     1723function bp_the_page_hook() {
     1724        echo bp_get_the_page_hook();
     1725}
    17231726
     1727        function bp_get_the_page_hook() {
     1728                $page = explode( ' ', bp_get_the_body_class() );
     1729                return $page[count( $page ) - 1];
     1730        }
     1731
     1732function bp_pagetitle( $title ) {
     1733        echo bp_get_pagetitle( $title );
     1734}
     1735
     1736        function bp_get_pagetitle( $title ) {
     1737                return apply_filters( 'bp_get_pagetitle', $title, bp_get_the_page_hook() );
     1738        }
     1739
    17241740?>
     1741 No newline at end of file
  • bp-themes/bp-sn-framework/archive.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    44
     
    66               
    77                <div class="page" id="blog-archives">
    88               
    9                         <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>
     9                        <h2 class="pagetitle"><?php bp_pagetitle( __( 'Blog', 'buddypress' ) ) ?></h2>
    1010                       
    1111                        <?php if ( have_posts() ) : ?>
    1212
    13                                 <h3><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>
     13                                <h3><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ) ?></h3>
    1414
    1515                                <div class="navigation">
    1616                                       
     
    1919                               
    2020                                </div>
    2121
    22                                 <?php while (have_posts()) : the_post(); ?>
     22                                <?php while ( have_posts() ) : the_post() ?>
    2323
    2424                                        <?php do_action( 'bp_before_blog_post' ) ?>
    2525                               
    2626                                        <div class="post">
    2727                                               
    28                                                 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3>
     28                                                <h3 <?php post_class() ?> id="post-<?php the_ID() ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title() ?>"><?php the_title() ?></a></h3>
    2929                                                <small><?php the_time('F j, Y') ?></small>
    3030
    3131                                                <div class="entry">
    3232                                                        <?php the_content() ?>
    3333                                                </div>
    3434
    35                                                 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?>  <?php comments_popup_link( __( 'No Comments &#187;', 'buddypress' ), __( '1 Comment &#187;', 'buddypress' ), __( '% Comments &#187;', 'buddypress' ) ); ?></p>
     35                                                <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | ') ?> <?php comments_popup_link( __( 'No Comments &#187;', 'buddypress' ), __( '1 Comment &#187;', 'buddypress' ), __( '% Comments &#187;', 'buddypress' ) ) ?></p>
    3636
    3737                                        </div>
    3838
     
    5050                        <?php else : ?>
    5151
    5252                                <h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
    53                                 <?php load_template ( TEMPLATEPATH . '/searchform.php' ); ?>
     53                                <?php load_template ( TEMPLATEPATH . '/searchform.php' ) ?>
    5454
    5555                        <?php endif; ?>
    5656