Making WordPress.org

Ticket #3009: 3009.2.diff

File 3009.2.diff, 5.2 KB (added by SergeyBiryukov, 7 years ago)
  • buddypress.org/public_html/wp-content/themes/bb-base/archive.php

     
    11<?php get_header(); ?>
    22<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    33                        <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    4                         <cite><?php printf( __( 'Published on %s by %s', 'bbporg' ), get_the_time( 'F jS, Y' ), get_the_author_link() ); ?></cite>
     4                        <cite><?php
     5                                /* translators: 1: post date, 2: post author */
     6                                printf( __( 'Published on %1$s by %2$s', 'bborg' ),
     7                                        get_the_time( 'F jS, Y' ),
     8                                        get_the_author_link()
     9                                );
     10                        ?></cite>
    511                        <div class="single-post archive" id="post-<?php the_ID(); ?>"><?php the_excerpt(); ?></div>
    612<?php endwhile;  else : ?>
    713                        <p><em><?php _e( 'Sorry, no posts matched your criteria.' ); ?></em></p>
  • buddypress.org/public_html/wp-content/themes/bb-base/index.php

     
    11<?php get_header(); ?>
    22<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    33                        <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    4                         <cite><?php printf( __( 'Published on %s by %s', 'bbporg' ), get_the_time( 'F jS, Y' ), get_the_author_link() ); ?></cite>
     4                        <cite><?php
     5                                /* translators: 1: post date, 2: post author */
     6                                printf( __( 'Published on %1$s by %2$s', 'bborg' ),
     7                                        get_the_time( 'F jS, Y' ),
     8                                        get_the_author_link()
     9                                );
     10                        ?></cite>
    511                        <div class="single-post" id="post-<?php the_ID(); ?>"><?php the_content( __( 'Read more &rarr;' ) ); ?></div>
    612<?php endwhile; if ( get_next_posts_link() ) : ?>
    713                        <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts' ) ); ?></div>
  • buddypress.org/public_html/wp-content/themes/bb-base/single.php

     
    11<?php get_header(); ?>
    22<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    33        <h3 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h3>
    4         <cite><?php printf( __( 'Published on %1$s by %2$s', 'bborg' ), get_the_time( 'F jS, Y' ), get_the_author_link() ) ?></cite>
     4        <cite><?php
     5                /* translators: 1: post date, 2: post author */
     6                printf( __( 'Published on %1$s by %2$s', 'bborg' ),
     7                        get_the_time( 'F jS, Y' ),
     8                        get_the_author_link()
     9                );
     10        ?></cite>
    511        <div class="single-post" id="post-<?php the_ID(); ?>"><?php the_content( __( 'Read more &rarr;' ) ); ?></div>
    612
    713        <hr class="hidden" />
  • buddypress.org/public_html/wp-content/themes/codex-bbpress-org/index.php

     
    11<?php get_header(); ?>
    22<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    33                        <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    4                         <cite><?php printf( __( 'Published on %s by %s', 'bbporg' ), get_the_time( 'F jS, Y' ), get_the_author_link() ); ?></cite>
     4                        <cite><?php
     5                                /* translators: 1: post date, 2: post author */
     6                                printf( __( 'Published on %1$s by %2$s', 'bbporg' ),
     7                                        get_the_time( 'F jS, Y' ),
     8                                        get_the_author_link()
     9                                );
     10                        ?></cite>
    511                        <div class="single-post" id="post-<?php the_ID(); ?>"><?php the_excerpt(); ?></div>
    612                        <?php $post_authors[get_the_author_meta( 'ID' )] += 1; ?>
    713<?php endwhile;  ?>
  • buddypress.org/public_html/wp-content/themes/codex-buddypress-org/index.php

     
    11<?php get_header(); ?>
    22<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    33                        <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    4                         <cite><?php printf( __( 'Published on %s by %s', 'bporg' ), get_the_time( 'F jS, Y' ), get_the_author_link() ); ?></cite>
     4                        <cite><?php
     5                                /* translators: 1: post date, 2: post author */
     6                                printf( __( 'Published on %1$s by %2$s', 'bporg' ),
     7                                        get_the_time( 'F jS, Y' ),
     8                                        get_the_author_link()
     9                                );
     10                        ?></cite>
    511                        <div class="single-post" id="post-<?php the_ID(); ?>"><?php the_excerpt(); ?></div>
    612                        <?php $post_authors[get_the_author_meta( 'ID' )] += 1; ?>
    713<?php endwhile;  ?>