当我安装WordPress时,我有一个主菜单。在编辑时,我在菜单中添加了一个菜单项,但我的主菜单项消失了。
我不知道发生了什么事。如何添加链接到主页的主菜单项?
答案 0 :(得分:0)
我不确定为什么你的家居用品在添加另一件商品后会消失,但要确保你的主题是使用wp_page_menu():
http://codex.wordpress.org/Template_Tags/wp_page_menu
这样可以将您的“主页”与您的其他页面一起列出。
答案 1 :(得分:0)
编辑header.php中的行
wp_page_menu('show_home = 1');
在codex中引用:http://codex.wordpress.org/Function_Reference/wp_page_menu
答案 2 :(得分:0)
如果您已将Home添加为菜单,则将index.php
的内容复制到Home.php
(在主题中创建此空文件)文件。
然后运行并检查主页。
答案 3 :(得分:0)
第1步。要链接您的主页,请创建index.php
作为主页的模板文件,如下面的代码:
如果您使用自定义主题(在wnt-content的主题文件夹中创建的主题,除了Twentyelevan,Tweten等等,请使用这些代码。
<?php
/**
* Template Name: home
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php get_header(); ?>
// whatever body code u need,u can include it here.
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-header">
<!-- <div class="date"><?php the_time( 'M j y' ); ?></div>-->
<!-- <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent
Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>-->
<!-- <div class="author"><?php the_author(); ?></div>-->
</div><!--end post header-->
<div class="entry clear">
<?php if ( function_exists( 'add_theme_support' ) ) the_post_thumbnail(); ?>
<?php the_content(); ?>
<!-- <?php edit_post_link(); ?>-->
<?php wp_link_pages(); ?>
</div><!--end entry-->
<div class="post-footer">
<!-- <div class="comments"><?php comments_popup_link( 'Leave a Comment', '1
Comment', '% Comments' ); ?></div>-->
</div><!--end post footer-->
</div><!--end post-->
<?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
<div class="navigation index">
<div class="alignleft"><?php next_posts_link( 'Older Entries' ); ?></div>
<div class="alignright"><?php previous_posts_link( 'Newer Entries' ); ?></div>
</div><!--end navigation-->
<?php else : ?>
<?php endif; ?>
<div id="slider">
<?php
$tmp = $wp_query;
$wp_query = new WP_Query('posts_per_page=5&category_name=featured');
if(have_posts()) :
while(have_posts()) :
the_post();
?>
<a href="<?php the_permalink(); ?>"><?php
the_post_thumbnail('nivothumb'); ?></a>
<?php
endwhile;
endif;
$wp_query = $tmp;
?>
</div><!-- close #slider -->
<?php get_footer(); ?>
或者,如果您使用的是wordpress内置主题,请使用以下代码:
<?php
/**
* Template Name: onebyone
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<html>
// whatever body code u need,u can include it here.
</html>
第2步。然后在wordpress中打开主页,Pages - &gt;所有页面,点击编辑。
第3步。在主页的编辑页面中,您会在右侧看到名为Template的Dropdown。点击 下拉列表,您将看到您的模板名称为主页选择它,然后单击更新 按钮。
第4步。然后,在左上角,点击您的网站或博客名称并访问网站或 通过点击它来检查您的主页的博客。
答案 4 :(得分:-2)
您是否有指向您网站的链接?
这可能就像检查一个盒子一样简单。或者,您可以创建自定义菜单。