Saturday, October 20, 2012

让wordpress页面菜单支持标签分类

 

一.Multi-level Navigation Plugin插件

1.在管理面板,插件->安装插件,搜索下载安装Multi-level Navigation Plugin.

2.在管理面板,设置->Multi-level Navigation Plugin,Home标签里,有看见Installation,里面有说找你喜欢的位置放入以下代码:<?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?>

 

我使用twentyeleven主题,所以在wordpress\wp-content\themes\twentyeleven\header.php里,第135行,也就是<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>后面加一行:<?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?>

 

3.上传修改后的header.php到服务器上.

它长这个样子:中间那个蓝色,鼠标移上去,可以弹出那个菜单

image

二.Menu Maker插件

1.查找:(这步改不改都没有效果....)

<li class="active">

修改为:

<li class="current_page_item">

2.我使用twentyeleven主题,所以在wordpress\wp-content\themes\twentyeleven\header.php里,第135行,也就是<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>后面加一行:<?php if (function_exists('id_menu_maker')) {id_menu_maker();} ?>

3.它长这个样子:

image

都不是我想要的,所以CSS调试界面:

image

它妈的,怎么是自己建ul item,不是在人家ul里面建item.

三.最终结果:

我用一,然后删除<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>这一行.

不好看,我要改CSS.

No comments: