V
V
VladimirMelnik2018-07-29 19:19:34
WordPress
VladimirMelnik, 2018-07-29 19:19:34

Why don't custom permalinks work?

Wordpress has a permalink structure like "site.com/%postname%/". Posts with category 29 need to work when you enter https://site.com/dictionary/post-name/. Please tell me why this code is not working:

function dictionary_permalink($permalink, $post) {
    $category = get_the_category($post->ID);
  if (!empty($category) && $category[0]->cat_ID == 29) {
        $permalink = trailingslashit( home_url('/dictionary/'. $post->post_name . '/'));
  }
    return $permalink;
}
add_filter('post_link', 'dictionary_permalink', 20, 3);

function dictionary_rewrite() {
    add_rewrite_rule(
        '^dictionary/([^/]*)/?',
        'index.php?pagename=$matches[1]',
        'top'
    );
}
add_action('init', 'dictionary_rewrite');

Entering https://site.com/dictionary/post-name/ shows 404, entering https://site.com/index.php?pagename=post-name redirects to https://site.com/post- name/ (loads correctly)

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question