在 WordPress 中如何将 post 添加到自定义页面:
In WordPress how to add post to custom pages:
我是 WordPress 新手。
假设我做了如下页面
主页、新闻、关于我们
现在,如果我只想为新闻页面创建 post
新闻1,
新闻2
然后 posting new post 我该如何设置这个设置?
您可以创建 page templates。
为您的所有页面创建一个。
然后,将新闻页面的模板更改为新闻模板。
在 PHP 文件中,您现在可以做任何事情。
例如,对于news.php
<?php
/*
Template Name: My Custom Page
*/
//Here comes your PHP code, where create a $WP_Query(); and loop troough on that.
我是 WordPress 新手。
假设我做了如下页面 主页、新闻、关于我们
现在,如果我只想为新闻页面创建 post 新闻1, 新闻2
然后 posting new post 我该如何设置这个设置?
您可以创建 page templates。
为您的所有页面创建一个。
然后,将新闻页面的模板更改为新闻模板。
在 PHP 文件中,您现在可以做任何事情。
例如,对于news.php
<?php
/*
Template Name: My Custom Page
*/
//Here comes your PHP code, where create a $WP_Query(); and loop troough on that.