Changeset 4553
- Timestamp:
- 12/16/2016 08:22:57 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin-directory-compat.php
r4072 r4553 97 97 $faq = sprintf( '<a href="//wordpress.org/plugins/%s/faq/">Frequently Asked Questions</a>', esc_attr( $this->slug() ) ); 98 98 $support = sprintf( '<a href="//wordpress.org/support/plugin/%s/">Support Threads</a>', esc_attr( $this->slug() ) ); 99 $active = sprintf( '<a href="//wordpress.org/support/plugin/%s/active">%s</a>', esc_attr( $this->slug() ), __( 'Active Topics', 'wporg-forums' ) ); 99 100 $reviews = sprintf( '<a href="//wordpress.org/support/plugin/%s/reviews/">Reviews</a>', esc_attr( $this->slug() ) ); 100 101 ?> … … 108 109 <?php endif; ?> 109 110 <li><?php echo $support; ?></li> 111 <li><?php echo $active; ?></li> 110 112 <li><?php echo $reviews; ?></li> 111 113 </ul> -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-theme-directory-compat.php
r4072 r4553 95 95 $theme = sprintf( '<a href="//wordpress.org/themes/%s/">%s</a>', esc_attr( $this->slug() ), esc_html( $this->theme->post_title ) ); 96 96 $support = sprintf( '<a href="//wordpress.org/support/theme/%s/">Support Threads</a>', esc_attr( $this->slug() ) ); 97 $active = sprintf( '<a href="//wordpress.org/support/theme/%s/active">%s</a>', esc_attr( $this->slug() ), __( 'Active Topics', 'wporg-forums' ) ); 97 98 $reviews = sprintf( '<a href="//wordpress.org/support/theme/%s/reviews/">Reviews</a>', esc_attr( $this->slug() ) ); 98 99 ?> … … 102 103 <li><?php echo $theme; ?></li> 103 104 <li><?php echo $support; ?></li> 105 <li><?php echo $active; ?></li> 104 106 <li><?php echo $reviews; ?></li> 105 107 </ul>
Note: See TracChangeset
for help on using the changeset viewer.