- 5
- 0
- 约5.62千字
- 约 5页
- 2017-01-09 发布于北京
- 举报
[WordPress技巧攻略
WordPress 技巧:给Admin Bar 添加删除链接
下面代码在 WordPress Admin Bar 增加一个当前日志的快速删除链接,复制到当前的主题的 functions.php 文件即可:
?php
function my_add_admin_bar_trash_menu() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() )
return;
$current_object = get_queried_object();
if ( empty($current_object) )
return;
if ( !empty( $current_object-post_type )
( $post_type_object = get_post_type_object( $current_object-post_type ) )
current_user_can( $post_type_object-cap-edit_post, $current_object-ID )
) {
$wp_admin_bar-add_menu(
array( id = delete,
原创力文档

文档评论(0)