wordpress文章字?jǐn)?shù)無(wú)上限。根據(jù)查詢相關(guān)公開(kāi)信息顯示,WordPress的文章長(zhǎng)度沒(méi)有上限,但建議不要超過(guò)20000-30000字。
創(chuàng)新互聯(lián)專(zhuān)業(yè)為企業(yè)提供北票網(wǎng)站建設(shè)、北票做網(wǎng)站、北票網(wǎng)站設(shè)計(jì)、北票網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、北票企業(yè)網(wǎng)站模板建站服務(wù),十載北票做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
wordpress采集文章的方法:
使用插件進(jìn)行插件(一般都是收費(fèi)的插件,中英文的都有)
使用火車(chē)頭采集軟件。
具體教程相關(guān)插件和軟件官網(wǎng)上都有。
方法一:標(biāo)簽相關(guān)
首先獲取文章的所有標(biāo)簽,接著獲取這些標(biāo)簽下的 n 篇文章,那么這 n 篇文章就是與該文章相關(guān)的文章了?,F(xiàn)在可以見(jiàn)到的WordPress相關(guān)文章插件都是使用的這個(gè)方法。下面是實(shí)現(xiàn)的代碼:
ul id="tags_related"
?php
global $post;
$post_tags = wp_get_post_tags($post-ID);
if ($post_tags) {
foreach ($post_tags as $tag) {
// 獲取標(biāo)簽列表
$tag_list[] .= $tag-term_id;
}
// 隨機(jī)獲取標(biāo)簽列表中的一個(gè)標(biāo)簽
$post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];
// 該方法使用 query_posts() 函數(shù)來(lái)調(diào)用相關(guān)文章,以下是參數(shù)列表
$args = array(
'tag__in' = array($post_tag),
'category__not_in' = array(NULL), // 不包括的分類(lèi)ID
'post__not_in' = array($post-ID),
'showposts' = 6, // 顯示相關(guān)文章數(shù)量
'caller_get_posts' = 1
);
query_posts($args);
if (have_posts()) {
while (have_posts()) {
the_post(); update_post_caches($posts); ?
li* a href="?php the_permalink(); ?" rel="bookmark" title="?php the_title_attribute(); ?"?php the_title(); ?/a/li
?php
}
}
else {
echo 'li* 暫無(wú)相關(guān)文章/li';
}
wp_reset_query();
}
else {
echo 'li* 暫無(wú)相關(guān)文章/li';
}
?
/ul
方法二:分類(lèi)相關(guān)
本方法是通過(guò)獲取該文章的分類(lèi)id,然后獲取該分類(lèi)下的文章,來(lái)達(dá)到獲取相關(guān)文章的目的。
ul id="cat_related"
?php
global $post;
$cats = wp_get_post_categories($post-ID);
if ($cats) {
$args = array(
'category__in' = array( $cats[0] ),
'post__not_in' = array( $post-ID ),
'showposts' = 6,
'caller_get_posts' = 1
);
query_posts($args);
if (have_posts()) {
while (have_posts()) {
the_post(); update_post_caches($posts); ?
li* a href="?php the_permalink(); ?" rel="bookmark" title="?php the_title_attribute(); ?"?php the_title(); ?/a/li
?php
}
}
else {
echo 'li* 暫無(wú)相關(guān)文章/li';
}
wp_reset_query();
}
else {
echo 'li* 暫無(wú)相關(guān)文章/li';
}
?
/ul