Wordpress管理员:如何将自定义命令添加到管理员帖子屏幕

时间:2017-09-15 07:17:25

标签: php wordpress wordpress-admin

在Wordpress管理员中,查看自定义帖子类型列表屏幕 enter image description here

任务:我需要复制“Shortcode”列的文本(文本已经显示在列表中)。

问题:我无法访问文本,因为激活的插件“帖子类型顺序”禁止通过向我显示鼠标指针来覆盖文本,作为将帖子移动到其他位置的一些方法的一部分(我需要的功能)

我的想法:当鼠标悬停在帖子上时,左侧会显示许多命令按钮(“编辑”,“QuickEdit”和“垃圾”),这是可以看到的这里 enter image description here

这组命令的附加命令按钮“复制短代码”可以帮我完成工作。

问题:如何在“垃圾箱”旁边的此列表中添加按钮? (使用Javascript复制到剪贴板应该没问题)

1 个答案:

答案 0 :(得分:1)

我提出了一个更舒适的解决方案,现在填充了专栏" Shortcode"具有短代码文本的超链接。因此,只需单击所需的短代码即可将短代码文本复制到剪贴板

enter image description here

以下是代码:

// add column 'Shortcode' in admin 'Layouts' list page
    // filter & action
    add_filter( 'manage_posts_columns', 'jg_add_id_column', 5 );
    add_action( 'manage_posts_custom_column', 'jg_id_column_content', 5, 2 );

    //add_filter( 'manage_et_pb_section_columns', 'jg_add_id_column', 5 );
    //add_action( 'manage_et_pb_section_custom_column', 'jg_id_column_content', 5, 2 );

    // display column title
    function jg_add_id_column( $columns ) {
      if( get_post_type( $post_id ) == 'et_pb_layout') {
         $columns['jg_id'] = 'Shortcode';
      }
      return $columns;
    }

    // display column value = shortcode-string
    function jg_id_column_content( $column, $id ) {
      if( get_post_type( $post_id ) == 'et_pb_layout') {
        if( 'jg_id' == $column ) {
          echo '<a id="myButton',$id, '" name="myButton',$id, '" class="myButtonClass">[showmodule id="', $id, '"]</a>';
        }
      }
    }

根据stackoverflow.com帖子'Click button copy to clipboard using jQuery'创建了用于将文本复制到剪贴板的Javascript。感谢您提供的有用评论。