最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

WordPress permalinkslug with numbers in the middle of the post name shows the broken page

programmeradmin0浏览0评论

I'm trying to fix the broken page problem, I found that there are some issues with the permalink of these broken pages. The slug of these pages has the same numbers as the one in the middle of the link below:

/

Code in functions.php:

$args = array( 
        'labels' => $labels,
        'hierarchical' => true,
        
        'supports' => array( 'title', 'editor', 'excerpt', 'tag', 'thumbnail'),
        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        
        
        'show_in_nav_menus' => true,
        'publicly_queryable' => true,
        'exclude_from_search' => false,
        'has_archive' => false,
        'query_var' => true,
        'can_export' => true,
        'taxonomies' => array( 'post_tag' ),
        
        'rewrite' => array('slug'=>'product','with_front'=>false),
        'capability_type' => 'post'
    );
发布评论

评论列表(0)

  1. 暂无评论