WordPress 中的两个索引类型页面

发布于 2024-10-16 03:52:42 字数 310 浏览 2 评论 0原文

我的网站上有一个新闻部分,我已将其插入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺深海 2024-10-23 03:52:42

在 newsFeed.php 中,在页面顶部添加以下代码

<?php
/*
Template Name: News
*/
?>

创建一个新页面,将其命名为 News。记下页面 ID(最快的方法是在页面部分的页面列表中,将鼠标悬停在新页面上,链接将显示完整 URL 中的页面 ID)。选择'News' 作为页面模板。

使用

<?php wp_list_pages('include=7); ?>

其中 7 是新闻页面的页面 ID,无论您希望链接位于主页上的任何位置。

in your newsFeed.php include the following code at the top of the page

<?php
/*
Template Name: News
*/
?>

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

<?php wp_list_pages('include=7); ?>

where 7 is the page ID of the news page, wherever you want the link to be on your home page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文