博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
wordpress 系列之 header 导航
阅读量:6328 次
发布时间:2019-06-22

本文共 914 字,大约阅读时间需要 3 分钟。

使用Menu Maker 进行导航设计的批量处理,使用默认的links表来保存导航

首先安装插件:

 或者 

说明文档:

  1. Upload the menumaker directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Go to Options > Menu Maker and change options and add menus
  4. Place <?php id_menu_maker(); ?> in your templates

上面是原始的安装方式。

此时我们来修改文件。

1,打开文件menumaker.php,添加如下的函数。

//use  the default link table to show links.function sql_menu_maker() {    global $wpdb;//调用系统的数据库配置    $output = '';    $links = $wpdb->get_results ( "Select link_name,link_url from `$wpdb->links" );//系统的数据库查询结果集函数    $output .= "
"; echo $output;}

2,打开需要存放导航的template:

这样以后添加的links 就可以在页面上作为导航显示了,同时呢,也可以自定义导航的css,方便操作。

 

转载于:https://www.cnblogs.com/awinlei/archive/2013/01/09/2853180.html

你可能感兴趣的文章
Citrix Receiver for Linux更新到12.0版本
查看>>
return
查看>>
shell脚本检测tomcat进程占用内存大小
查看>>
有什么好的限速软
查看>>
Java高效读取大文件
查看>>
我的友情链接
查看>>
Netty源码分析:图解Pipeline、Handler、Context
查看>>
系统蜜罐opencanary部署
查看>>
CentOS通过yum安装php7.0
查看>>
【CentOS 7MySQL常用操作1】,更改root密码#180112
查看>>
【CentOS 7Tomcat配置1】,Tomcat介绍和安装jdk#180120
查看>>
Gamebryo实例学习之三CharacterAnimationDemo
查看>>
boost vs2005 安装
查看>>
mysql,SQL Server常用函数整理,以备不时之需
查看>>
如何落地TensorFlow on Kubernetes
查看>>
PMP笔记1
查看>>
适配器模式(数据库为例)
查看>>
zabbix3.4 监控 DELL 硬件模板 | 中文汉化
查看>>
Spring Boot遇上jello
查看>>
asp.net添加ajax框架代码
查看>>