我想刪除摘錄功能或呈現它無功能,因爲我希望所有的職位被充分查看其內容。我認爲這個主題有一些跟蹤,以確保摘錄是在那一行,所以它必須存在。wordpress主題摘錄功能消除thao工作室主題
function excerpt($limit) {
$excerpt = explode(' ', get_the_excerpt(), $limit);
if (count($excerpt)>=$limit) {
array_pop($excerpt);
$excerpt = implode(" ",$excerpt).'...';
} else {
$excerpt = implode(" ",$excerpt);
}
$excerpt = preg_replace('`\[[^\]]*\]`','',$excerpt);
return $excerpt;
}
function content($limit) {
$content = explode(' ', get_the_content(), $limit);
if (count($content)>=$limit) {
array_pop($content);
$content = implode(" ",$content).'...';
} else {
$content = implode(" ",$content);
}
$content = preg_replace('/\[.+\]/','', $content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
return $content;
}
我只有這2行代碼,我知道是相關的。 我不知道$限制來自哪裏,我試圖找到所有主題相關的PHP,沒有發現。 請幫幫我。非常感謝你。
你想顯示完整的內容,而不是你的主題摘錄? – 2012-07-15 18:38:58
是的,如果可能的話。我試圖儘可能長時間地做出摘錄,以便它顯示完整但失敗 – 2012-07-15 18:40:48
爲什麼不在主題中使用the_content()? – 2012-07-15 18:41:48