2

我在 WordPress 网站上有 40 个左右的帖子。

我需要将其中大约 20 个移动到我创建的新页面。

我已经为这些帖子创建了(新)页面和一个新类别。

我更改了编辑某些帖子并将类别更改为新类别。

它们出现在(新)页面上,但它们也都出现在首页上。

需要做什么才能使帖子仅显示在(新)页面上,而不是网站的主页上。

谢谢你的帮助。

4

1 回答 1

2

Exclude that category from the front page like so:

if ( is_front_page() ) { query_posts( 'cat=-1' ); }

Switch out the "1" with the ID of the category you want to exclude. The - sign in front of the ID says it is excluded.

Reference: WordPress Codex: Query Posts

于 2012-06-08T00:04:54.643 回答