我开发了一个wordpress主题。共有2页主页和关于我们。对于主页,我使用index.php,对于我们页面,我使用了page.php模板。但是当我点击主页时,它显示标题“找不到页面”。
我创建了一个名为HOME的页面,然后显示我在主页中发布的页面内容,但我需要显示index.php的内容。 (例如在index.php中我有一个滑块。我创建了一个名为“Home”的页面。当我点击主页面时,它显示我在主页上发布的内容,没有滑块显示)
以下是网站admission247.com
我的page.php代码
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="page_content">
<?php // echo '<br/><br/>'; ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
答案 0 :(得分:0)
没有看到代码就很难说清楚。
以下是我用于标题的代码片段。
<title><?php
global $page, $paged;
wp_title("«", true, "right");
bloginfo("name");
$site_description = get_bloginfo("description", "display");
if($site_description && (is_home() || is_front_page()))
echo " « $site_description";
if($paged >= 2 || $page >= 2)
echo " « " . sprintf(__("Page %s", "h18"), max($paged, $page));
?></title>
如果可以的话,尽可能多地发布代码。它将帮助其他人更多地了解您的问题。
答案 1 :(得分:0)
YOUR_try this
<强>的functions.php 强>
function site_wp_title( $title, $sep ) {
global $paged, $page;
if ( is_feed() )
return $title;
// Add the site name.
$title .= get_bloginfo( 'name' );
// Add the site description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
$title = "$title $sep $site_description";
// Add a page number if necessary.
if ( $paged >= 2 || $page >= 2 )
$title = "$title $sep " . sprintf( __( 'Page %s', 'YOUR_SITE' ), max( $paged, $page ) );
return $title;
}
add_filter( 'wp_title', 'site_wp_title', 10, 2 );
<强>的header.php 强>
<title><?php wp_title( '|', true, 'right' ); ?></title>