How can I get topic’s picture URL?
-
The bbress Support 7 years ago. Topic Thumbnails?
add_action( 'bbp_theme_before_topic_title', 'assylumn_insert_thumbnail' ); function assylumn_insert_thumbnail() { echo('<a href="http://www.mysite.com/wp-content/uploads/2013/09/picture.jpg">') ; echo('<img class="bbp-topic-thumbnail" width="100%" style="max-width: ' . get_option('thumbnail_size_w') . 'px; max-height: ' . get_option('thumbnail_size_h'). 'px; vertical-align:middle;" src="http://www.mysite.com/wp-content/uploads/2013/09/picture.jpg"/>' .'</a>'); }
I did not know how to get the url in each topic pictures using plugin, GD bbPress Attachments.
Please show me other code to get the url in the topic pictures.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.