11 2016 档案

摘要:阅读wordpress官方文档WP_Rewrite类:https://codex.wordpress.org/Class_Reference/WP_Rewrite 案例: The Jerome's Keywords plugin does this to enable URLs like http: 阅读全文
posted @ 2016-11-30 22:25 贵隆 阅读(326) 评论(0) 推荐(0)
摘要://获取当前页面的id $page_id = $wp_query->get_queried_object_id(); //获取当前页面的别名 $slug = get_page( $page_id ); echo $slug->post_name; 阅读全文
posted @ 2016-11-26 21:12 贵隆 阅读(505) 评论(0) 推荐(0)
摘要:wordpress顶级菜单函数add_menu_page() add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );//page_title页面title 阅读全文
posted @ 2016-11-26 10:49 贵隆 阅读(794) 评论(0) 推荐(0)
摘要:插件的manifest.json文件: { "manifest_version": 2, "name": "保存网页为PDF", "version": "1.1.7.80", "description": "保存网页为PDF【作者:涂剑凯,邮箱:bdstjk@qq.com】", "icons":{" 阅读全文
posted @ 2016-11-19 21:38 贵隆 阅读(7649) 评论(0) 推荐(0)