Answer the question
In order to leave comments, you need to log in
How to change link in wordpress?
Hello, there is a site on wp with the theme installed. The theme has the ability to create reviews, reviews are added to the main menu in the admin panel:
If I click the View Testimonial button, the link in the address bar looks like this: domain.ru/testimonial/review-name
Question - how do I change "testimonial" to, for example , "reviews"?
Answer the question
In order to leave comments, you need to log in
look for the place in the functions.php file where register_post_type occurs
You need to translate the template into Russian.
1) Find the localization file
2) Open it in poedit
3) Find and replace testimonial with reviews
4)???
5) Profit
function add_custom_rewrite_rule() {
//Получаем структуру постоянных ссылок.
if( ( $current_rules = get_option('rewrite_rules') ) ) {
//Ищем нужный нам ярлык (slug)
foreach($current_rules as $key => $val) {
if(strpos($key, 'testimonial') !== false) {
//Если находим нужный нам 'testimonial' то перезаписываем его
add_rewrite_rule(str_ireplace('testimonial', 'отзывы', $key), $val, 'top');
}
}
}
// Обновляем правила
flush_rewrite_rules();
}
//Вешаем функцию на хук.
add_action('init', 'add_custom_rewrite_rule');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question