今天專門研究了一下wordpress開通多站點成為一個博客群網(wǎng)站之后,安裝buddypress成為社區(qū),怎樣調(diào)用全站最新更新的內(nèi)容到首頁的問題。
在《wordpress多站點調(diào)用全站所有子站點最新文章函數(shù)化》一文中給出一個使用數(shù)據(jù)庫進(jìn)行調(diào)用,同時利用php遍歷和冒泡比較的方法,獲得了一個可以用來實現(xiàn)該功能的方法。但是這種操作還是存在一些不夠全面的問題。我們在安裝buddypress插件之后,整個博客成為一個社區(qū),bp會為wordpress多站點建立一些新的數(shù)據(jù)表,以保存社區(qū)的信息,并有一些核心函數(shù),實現(xiàn)這些信息的調(diào)用。
在buddypress中,使用
if(bp_has_activities(array('action' => 'new_blog_post','max' => get_option('posts_per_page'),'per_page' => get_option('posts_per_page'),'user_id' => 0,'scope' => false,'object' => false,'primary_id' => false ))) :
while(bp_activities()) : bp_the_activity();
endwhile;
endif;
來實現(xiàn)如wordpress中query_posts();while(have_posts):the_post();endwhile;一樣的文章循環(huán)功能。在wordpress的LOOP中的$post換成了$activities_template->activity。我們可以利用里面的很多信息。
廢話不多說,看看我是怎么實現(xiàn)多站點下全站最新文章調(diào)用的:
$mu_posts = array();
$i = 0;
if(bp_has_activities(array('action' => 'new_blog_post','max' => get_option('posts_per_page'),'per_page' => get_option('posts_per_page'),'user_id' => 0,'scope' => false,'object' => false,'primary_id' => false ))) :
while(bp_activities()) : bp_the_activity();
$mu_posts[$i]['blog_id'] = $activities_template->activity->item_id;
$mu_posts[$i]['post_id'] = $activities_template->activity->secondary_item_id;
$mu_posts[$i]['post_author'] = $activities_template->activity->user_nicename;
$i ++;//執(zhí)行結(jié)束后,i==1表示有一篇文章,第一篇文章的下標(biāo)為[0]
endwhile;
endif;
上面這段代碼利用buddypress的特性,將一些信息記錄在$mu_posts數(shù)組中。
<?php if(!empty($mu_posts)): ?>
<ul id="blog-post-list" class="activity-list item-list">
<?php foreach($mu_posts as $mu_post): ?>
<?php $blog_id = $mu_post['blog_id'];$post_id = $mu_post['post_id'];$post_author = $mu_post['post_author']; ?>
<?php $blog_name = get_blog_option($blog_id,'blogname');$blog_url = get_blog_option($blog_id,'siteurl'); ?>
<?php $post = get_blog_post($blog_id,$post_id);setup_postdata($post); ?>
<li>
<h1 class="activity-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></h1>
<div class="activity-content">
<div class="activity-header">
<span><a href="<?php echo get_blog_option(1,'siteurl'); ?>/members/<?php echo $post_author; ?>/"><?php the_author(); ?></a></span>
<span><?php the_date(); ?></span>
發(fā)布在站點
<span><a href="<?php echo $blog_url; ?>" target="_blank"><?php echo $blog_name; ?></a></span>
<?php if($post->comment_count > 0)echo '<span><a href="'.get_permalink().'#comment" target="_blank">有評論'.$post->comment_count.'條</a></span>'; ?>
</div>
<div class="activity-inner">
<?php
$content = get_the_content();
$content = strip_tags($content,'');
$content = trim(mb_strimwidth($content,0,500,'...'));
//$content = close_html_tags($content);
echo wpautop($content);
?>
<p class="read-more"><a href="<?php the_permalink(); ?>" target="_blank">查看原文</a></p>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
這一段代碼可以放在上面那段代碼之后,利用之前獲取的信息,得到文章對應(yīng)的$blog_id和$post_id,再結(jié)合wordpress多站點函數(shù)就能調(diào)用出各種你想要的內(nèi)容。參考站點:南昌大學(xué)“前湖之風(fēng)”周末講壇聯(lián)絡(luò)處博客系統(tǒng)
同時,這個地方還用到了setup_postdata($post);這個函數(shù)在wordpress中很少被重視,我們用get_post($post_id)獲取一篇文章之后,可以利用setup_postdata($post);函數(shù)進(jìn)行格式化,它后面就可以像wordpress中利用the_title()、the_content()等這樣在loop循環(huán)中使用的和文章相關(guān)的函數(shù)了。
這一方法我從探索到實現(xiàn)花費了兩天時間,主要困難在于理解buddypress的數(shù)據(jù)、函數(shù)等,同時還會遇到很多系統(tǒng)核心的問題,通過不同算法的嘗試,最終確定了這種有效的調(diào)用方式。
更多信息請查看IT技術(shù)專欄