您好我已安装News Manager Plugin。
我的永久链接存在问题。我在wordpress中使用永久链接设置为/%category%/%postname%/。
单个新闻项目网址显示为:site.com/news/post-name /
应将其显示为:site.com/news类别名称/后名称/
此外,我已将新闻类别添加到菜单中。单击新闻类别而不是其他页面时,url显示为:site.com/news/category/category-name。 (新闻和类别是网址中包含的静态字词。)
它应该反映为:site.com/news类别名称/
我为类别新闻项编码了HTML,其中将显示与特定新闻类别相关的新闻。但不知道如何链接它们。
目前,当点击新闻类别名称时,会显示index.php的内容。
有关上述查询的任何帮助将不胜感激。
在新闻管理器插件中,我找到了永久链接的以下代码:
permalinks' => array(
'news_slug' => 'news',
'news_categories_rewrite_slug' => 'category',
'news_tags_rewrite_slug' => 'tag',
'single_news_prefix' => false,
'single_news_prefix_type' => 'category'
)
对永久链接问题有什么责任吗?
答案 0 :(得分:0)
您必须转到Admin Dashboard > Settings > Permalinks
并选择
Custom Structure
从可用选项中粘贴以下代码,该代码显示在您选中的单选按钮的输入框中。
/%category%/%postname%/
这将在abc.com/holiday/sunday-is-funday
中显示您的网址,其中假日是类别,sunday-is-funday
是帖子类型名称。