我希望能够在论坛帖子上方显示Super Sticky或Sticky帖子。换一种说法。我将在页面上发布帖子,超级/粘贴帖子就在那里。但是,在帖子列表之上,我想在那里有超级/粘性帖子。有点像“精选讨论”类型部分。
答案 0 :(得分:1)
所以我最终这样做是为了解决我的问题。我在表格上方添加了一个包含主题的div,然后按照以下方式对我进行了一些jquery:
var rows = $('table.bbp-topics').find('tr.super-sticky');
rows.each(function(index) {
var headhref = $('a.bbp-topic-permalink', this).attr('href');
var headline = $('a.bbp-topic-permalink', this).html();
var excerpt = $('.excerpt', this).text();
var author = $('a.bbp-author-name', this).html();
var photo = $('a.bbp-author-avatar > img', this).attr('src');
var replies = $('.bbp-topic-voice-count', this).text();
var followers = $('.bbp-topic-reply-count', this).text();
var freshness = $('.bbp-topic-freshness > a', this).html();
var meta = $('p.bbp-topic-meta', this).text();
var newrow = '<div class="featured-row"><div class="topic-meta">' +
'<img class="author-photo" src ="' + photo + '">' +
'<div class="author">' + author +'</div> ' +
'<div class="topic-title"><a href="' + headhref + '">' + headline + '<a/></div>' +
'<div class="excerpt">' + excerpt + '</div></div>' +
'<div class="replies"><h3>Replies</h3><hr/><p>' + replies + '</p></div> ' +
'<div class="followers"><h3>Followers</h3><hr/><p>' + followers + '</p></div> ' +
'<div class="freshness"><h3>Updated</h3><hr/><p>' + freshness + '</p></div> ' +
' </div>';
console.log(newrow);
$('#supersticky').fadeIn().append(newrow)
})
希望这有助于其他人。
答案 1 :(得分:0)
这是一个更简单的答案,from this bbpress.org thread
$query = new WP_Query(array('post__in' => bbp_get_super_stickies());