我正在做一个自定义的Wordpress主题,我有索引。php设置为主页视图,我想创建另一个页面来列出所有博客帖子,我熟悉循环,我只想知道如何正确链接到新页面。这是我正在使用的
<a href="<?php echo get_bloginfo(\'template_directory\');?>/blogs.php">Blog Listing</a>
但是当我重定向到http://localhost/wordpress/wp-content/themes/final/blogs.php
我明白了atal error: Uncaught Error: Call to undefined function the_title() in
, 我猜这是在解释blogs.php
在面层上,不传递wordpress上下文。需要一些帮助。