Changeset 1644 for sites/trunk/buddypress.org/public_html/wp-content/themes/codex-bbpress-org/front-page.php
- Timestamp:
- 06/02/2015 09:17:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/buddypress.org/public_html/wp-content/themes/codex-bbpress-org/front-page.php
r442 r1644 21 21 echo '<ul>'; 22 22 foreach ( $terms as $term ) { 23 echo '<li><a href="' . esc_url( 'http ://codex.bbpress.org/component/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>';23 echo '<li><a href="' . esc_url( 'https://codex.bbpress.org/component/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>'; 24 24 } 25 25 echo '</ul>'; … … 39 39 echo '<ul>'; 40 40 foreach ( $terms as $term ) { 41 echo '<li><a href="' . esc_url( 'http ://codex.bbpress.org/version/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>';41 echo '<li><a href="' . esc_url( 'https://codex.bbpress.org/version/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>'; 42 42 } 43 43 echo '</ul>'; … … 57 57 echo '<ul>'; 58 58 foreach ( $terms as $term ) { 59 echo '<li><a href="' . esc_url( 'http ://codex.bbpress.org/type/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>';59 echo '<li><a href="' . esc_url( 'https://codex.bbpress.org/type/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>'; 60 60 } 61 61 echo '</ul>'; … … 75 75 echo '<ul>'; 76 76 foreach ( $terms as $term ) { 77 echo '<li><a href="' . esc_url( 'http ://codex.bbpress.org/context/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>';77 echo '<li><a href="' . esc_url( 'https://codex.bbpress.org/context/' . $term->slug ) . '" title="' . esc_attr( sprintf( __( 'View all pages for: %s' ), $term->name ) ) . '">' . esc_html( $term->name ) . '</a></li>'; 78 78 } 79 79 echo '</ul>'; … … 93 93 94 94 $args = array( 'order' => 'ASC', ); 95 $revisions = wp_get_post_revisions( get_queried_object_id(), $args ); 95 $revisions = wp_get_post_revisions( get_queried_object_id(), $args ); 96 96 $post_authors = array( $post->post_author => 1 ); 97 97 foreach( (array)$revisions as $revision ) {
Note: See TracChangeset
for help on using the changeset viewer.