Change posts URL

时间:2012-06-22 作者:seoppc

Possible Duplicate:
Permalink: postname EXCEPT for blog

我已经同意将我的网站转换为wordpress,并使用了索引。php作为主页和博客。php(博客帖子的模板),但当我创建任何新帖子时,它会生成类似permalink的页面,例如。。。

http://www.domain.com/post-name
而不是http://www.domain.com/blog/post-1

你能帮助我如何为所有博客帖子分配/写博客吗。谢谢你的帮助。

1 个回复
SO网友:user1337

使用自定义permalink结构/blog/ 无论什么

更多信息:http://codex.wordpress.org/Using_Permalinks

结束

相关推荐

Delete Child Posts

当父帖子被删除时,我正在尝试删除所有子帖子。父帖子删除得很好,但子帖子没有正确删除。以下是我现在掌握的代码:$args = array( \'post_parent\' => $parentid, \'post_type\' => \'custom-type\' ); $posts = get_posts( $args ); if ($posts) {