- 21, Oct 2024
- #1
Я использую тему WordPress для блогстарта и хотел бы изменить текст «Читать дальше» на что-то похожее на язык, который я использую. Как я могу это сделать? Я уже пытался вставить код ниже в файл function.php.
Replaces the excerpt "Read More" text by a link
function modify_read_more_link() {
return '<a class="read-article" href="' . get_permalink() . '">Your Read
More Link Text</a>';
}
add_filter( 'the_content_more_link', 'modify_read_more_link' );
// Replaces the excerpt "Read More" text by a link
function new_excerpt_more($more) {
global $post;
return '<a class="read-article" href="'. get_permalink($post->ID) . '">
Read the full article...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
Может ли кто-нибудь помочь мне с этим? Спасибо!
#plugins #php #разработка плагинов #подробнее