Making WordPress.org


Ignore:
Timestamp:
01/18/2017 07:11:52 PM (8 years ago)
Author:
coffee2code
Message:

Support Theme: Add sidebar link "Create Topic" or "Reply to Topic" based on context.

Adds an above-the-fold link that leads to the down-page form (which is otherwise only discoverable by scrolling).

Fixes #1977.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/sidebar.php

    r4477 r4720  
    2727                    <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/"><?php _e( 'Recent Posts', 'wporg-forums' ); ?></a></li>
    2828                    <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic"><?php _e( 'Recent Topics', 'wporg-forums' ); ?></a></li>
     29                    <?php if ( bbp_current_user_can_access_create_topic_form() ) : ?>
     30                    <li class="create-topic"><a href="#new-post"><?php _e( 'Create Topic', 'wporg-forums' ); ?></a></li>
     31                    <?php endif; ?>
    2932                </ul>
    3033            </div>
Note: See TracChangeset for help on using the changeset viewer.