English 中文(简体)
我怎么会把一个主页连接到新陈词典主题的导航上? [闭门]
原标题:How would I add a homepage link to the navigation of a new WordPress theme? [closed]
Closed. This question is off-topic. It is not currently accepting answers.

。 因此,在Stack Overflow的

Closed 12 years ago.

I am designing a WordPress theme and am currently building the nav for my homepage. The code number 1 allows me to create pages using the custom menu penal. I am using code number 2 to create a link to the current page which it index so bloginfo( url ); would give me the URL to the site which would be the home page, at least that is my under standing. I could use a custom link to add a link to the menu and link to the home page but I would like the theme to have a link to the home page that is native or is in the menu at the on set. Any thoughts on this problem would be greatly appreciated.

<!--code number 1-->
<ul id="menu">
<?php wp_list_pages( title_li=&depth=1 ); ?>
</ul>

<!--code number 2-->
<ul id="menu">
<li><a href="<?php bloginfo( url ); ?>" title="Home">Home</a></li>
<?php wp_list_pages( title_li=&depth=1 ); ?>
</ul>
最佳回答

Use the relatively new Wordpress Menu feature instead.<页: 1p>

http:页: 1页: 1codex.wordpress.org页: 1Function_Reference页: 1register_nav_menu”rel=“nofollow” 履行职务。 php档案。<页: 1p>

add_action(  after_setup_theme ,  template_setup  );

if ( ! function_exists(  template_setup  ) ):

function template_setup() {
    页: 1页: 1 register nave menu
    register_nav_menu( primary , Main Menu );
}
endif;
<页: 1code><页: 1pre>

如果你已经具备在模板-启动上起火的功能,那么,在这项职能中添加以下一线:<页: 1p>

register_nav_menu( primary , Main Menu );
<页: 1code><页: 1pre>

然后,在你的头脑中。 php(或你一直希望菜单上看)添加以下呼吁:wp_nav_menu:<页: 1p>

<?php wp_nav_menu( array( menu  =>  Main Menu , container  => false )); ?>
<页: 1code><页: 1pre>

之后,在您的陈词阿明特区,有一个具有突出特权的用户名称。 Goto Menus(这是一个新网页,在你的职能中登记菜单后可以查阅。)<页: 1p>

创建新的菜单,把它称作你喜欢的东西,并将它分配给主题地点,这里是Ma Main Menu。 在这里,你现在可以从你安装字塔的任何页面、职位、类别等架上调菜单。 还包括与家庭的联系。 关于接口的更多信息,见http:页: 1页: 1codex.wordpress.org页: 1Appearance_Menus_Screen”rel=“nofollow”>。<页: 1p>

The interface is lovely as well, nice drag and drop and the additional benefit of your menu remaining the same, even when you add new pages.<页: 1p>

页: 1<页: 1p>

另外,如果你们想要的是信使的用户,而他们是编辑的用户,就可以把信 men带上台,在你的职能中添加以下内容。 php档案。<页: 1p>

页: 1页: 1 editor role - add appearance menu
$role_object = get_role(  editor  );
页: 1页: 1 add $cap capability to this role object
$role_object->add_cap(  edit_theme_options  );
<页: 1code><页: 1pre>
    <页: 1div>
       
问题回答

暂无回答




相关问题
Wrap stray text in <p> tags

Wordpress issue.. how do I wrap stray text in P tags? Example: Before- <div class = "content"> <img src = "hello.jpg"/> <h1>Introduction</h1> Hello! this is ...

Using jQuery Plugins with Wordpress

Having a bit of trouble using jQuery plugins (Superfish, jQuery UI, etc) using Wordpress. Everything works fine in my plain non-Wordpress site, but Wordpress seems to conflict with JQuery. There must ...

WordPress Data Storage Efficiency

I ve been asked to review a WordPress plugin of sorts and try to find ways of making it faster. The premise of this plugin is basically to store a bunch of users and shifts and appointments and ...

Why can t I properly style a blockquote in Wordpress?

On the design I just created for my website, I have a blockquote styled with two quote images using the span technique in css: blockquote { background-image: url(images/openquote.jpg); background-...

How does the WordPress <!--nextpage--> tag actually work?

What happens? I m guessing that somehow the post or page is parsed before displaying, and then just split into two methods? I can t seem to find any documentation on how the underlying <?php ...

Wordpress Plug-ins: How-to add custom URL Handles

I m trying to write a Wordpress Plug-in but can t seem to figure out how you would modify how a URL gets handled, so for example: any requests made for: <url>/?myplugin=<pageID> will ...