私はこれを自分で診断しようとしましたが、私はプログラマーではありません。皆さんが私を助けてくれることを本当に願っています. functions.php
ファイルから、問題はadd_filter('excerpt_more', 'new_excerpt_more');
行にあると言われましたが、誰もが見られるようにコードの大部分を含めたかったのです。すべてのヘルプは大歓迎です!
function new_excerpt_more($more) {
global $post;
return '...<br><a href="'.get_permalink($post->ID).'">Read More <img class="read-more" src="'.get_bloginfo('template_url').'/images/read-more-arrow.jpg" alt="Read More" /></a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
// Custom excerpt length to show for like homepage small excerpts
function custom_excerpt_length($length) {
return 100;
}
add_filter('excerpt_length', 'custom_excerpt_length', 999);