我正在制作主题,我想创建页面模板可能代码如下:
<?php
/*
Template Name: Blog
*/
?>
<?php get_header(); ?>
<div id="content">
<div class="left">
<div class="pagina">
</div>
</div>
</div>
<?php get_footer(); ?>
我有创建页面名称博客,并从下拉列表博客中为其指定自定义模板,但当我点击导航元素博客时,它会显示The requested URL /wp/blog/ was not found on this server.
任何人都可以提供帮助吗?
答案 0 :(得分:3)
我建议这是一个永久链接问题,而不是模板问题。您的.htaccess文件应该是可写的,并且在设置永久链接时应该自动添加一些代码。检查它是否可写并尝试再次设置永久链接。如果做不到这一点,我相信当你设置永久链接时,WordPress会为你提供复制/粘贴的代码。
简而言之,将此代码添加到.htaccess文件中,如果它已经存在的话。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
答案 1 :(得分:2)
这可能是众多原因之一;要么你有博客模板,要么因为你没有包含循环:
<?php
/*
Template Name: Archives with Content
*/
?>
<?php get_header(); ?>
<div id="content" class="">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="left">
<h2 id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
<div class="entrytext">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
<div id="main">
<?php get_search_form(); ?>
<!-- and whatever else you need -->
</div>
<?php get_footer(); ?>
如果仍然无效,请尝试刷新永久链接