Remove_filter()で問題が発生しています。削除フィルターは機能しますが、100%ではありません。最初は削除しません。3 dots続きを読むから、親の抜粋を置き換えません。Wordpress remove
はもっと明確に私が何をしようとしています何を、[...]続きを読むとにそれを変更を削除することです。
これは、子テーマから行われます。
親テーマのfunctions.phpコード
function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More! »' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
お子様テーマのfunctions.phpコード。
function child_theme_setup() {
// override parent theme's 'more' text for excerpts
remove_filter('excerpt_more', 'new_excerpt_more');
}
add_action('after_setup_theme', 'child_theme_setup');
// Replaces the excerpt "Read More" text by a link
function new_excerpt($more) {
global $post;
return '<a class="moretag" href="'. get_permalink($post->ID) . '">[...] </a>';
}
add_filter('excerpt', 'new_excerpt');
問題をはっきりと指定してください。 –
@HappyCoding、私はそれを編集しました –