WordPress 中的两个索引类型页面
我的网站上有一个新闻部分,我已将其插入 word-press CMS 中。我希望索引页面显示一些缩略图和帖子的摘录,然后当您单击博客标题时,我希望它转到包含所有帖子但以不同格式设置的另一个页面。
我尝试创建一个名为 newsFeed.php 的文件,索引可以链接到该文件,但我似乎无法正确链接到它。我尝试使用 链接到该页面,但它始终返回
NULL
。
我正在采取最好的方法吗?当时这似乎是一个简单的想法,但它变成了一个小小的噩梦,哈哈
I have a news section on my site and I have plugged it into the word-press CMS. I would like the index page to show some thumbnails and an excerpt of the post then when you click on a blog title I want it to go to another page with all the posts on but set up in a different format.
I've tried creating a file called newsFeed.php that the index can link to but I can't seem to link to it properly. I tried using <?php (TEMPLATEPATH.'newsFeed.php'); ?>
to link to the page but it keeps returning NULL
.
Am I going the best way about this? It seemed like such a simple Idea at the time but it's turned into a bit of a mini nightmare lol
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 newsFeed.php 中,在页面顶部添加以下代码
创建一个新页面,将其命名为 News。记下页面 ID(最快的方法是在页面部分的页面列表中,将鼠标悬停在新页面上,链接将显示完整 URL 中的页面 ID)。选择
'News'
作为页面模板。使用
其中
7
是新闻页面的页面 ID,无论您希望链接位于主页上的任何位置。in your newsFeed.php include the following code at the top of the page
Create a new page, call it News. Make a note of the page ID (quickest way to do this, on the list of pages in the page section, hover over the new page and the link will show the page ID in the full URL). Select
'News'
as the page template.Use
where
7
is the page ID of the news page, wherever you want the link to be on your home page.