admin管理员组文章数量:1421155
Is this possible? For example, I want to change
to
What should I do to get it working? Is there any chance to fix this?
Is this possible? For example, I want to change
http://mysitesitesite/post-name/comment-page-1/#comment-452
to
http://mysitesitesite/post-name/custonname-1/#customname-452
What should I do to get it working? Is there any chance to fix this?
Share Improve this question edited Aug 11, 2013 at 18:27 user1627363 asked Aug 4, 2013 at 11:43 user1627363user1627363 1724 silver badges21 bronze badges1 Answer
Reset to default 2In your functions.php add ( there are other rules relating to comment pages you can see them all with Rewrite Rules Inspector plugin, this one just covers the case you mention )
add_rewrite_rule (
'(.?.+?)/customname-([0-9]{1,})/?$',
'index.php?pagename=$matches[1]&cpage=$matches[2]',
'top'
);
you'll also need to find in your theme ( possibly in your function.php
) where the comments are generated and change where the id is added to the comment html from something like ( if you can specify what theme your using can be more specific )
<li <?php comment_class('clearfix'); ?> id="comment-<?php comment_ID(); ?>">
to
<li <?php comment_class('clearfix'); ?> id="customname-<?php comment_ID(); ?>">
本文标签: url rewritingChange Wordpress comments urlword
版权声明:本文标题:url rewriting - Change Wordpress comments urlword 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745332890a2653899.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论