2013-12-16 104 views
0

有人可以幫我解決this theme的摘錄嗎?它顯示主頁中的所有帖子,如果我切換到the_excerpt(),它將顯示一個未鏈接的繼續閱讀文本。 謝謝。WordPress主題開發:摘錄問題

+1

您到目前爲止嘗試過哪些方法,可以將代碼粘貼到此處,以便我們幫助解答。 – Subharanjan

+0

是的,請分享您用於獲取發佈數據的代碼,它將幫助我們準確得到您 –

+0

所有的代碼都在WP回購中。 – user1915335

回答

0

將此代碼粘貼到該主題的functions.php文件中。它會添加一個鏈接到摘錄。

// Replaces the excerpt "more" text by a link 
function new_excerpt_more($more) { 
     global $post; 
    return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article...</a>'; 
} 
add_filter('excerpt_more', 'new_excerpt_more'); 
+0

似乎我通過使用if(is_search()|| is_home()|| is_front_page())來解決問題:?>

<?php else:the_content(); ?> ...而是像以前一樣嘗試錯誤的方式:<?php if(is_search()&& is_home()):the_excerpt();謝謝大家。 – user1915335