5

似乎我无法弄清楚如何将编辑、删除、查看等添加到我在 wordpress 后端的自定义列之一。这个想法是在将鼠标悬停在标题上时获取附加到标题的链接,以附加到不同的列。

这是以下代码输出的内容。

这就是我希望将鼠标悬停在作者上时作者列中的链接所具有的内容,就像将鼠标悬停在此屏幕截图中的标题上一样;所有的编辑链接。

这是我到目前为止所拥有的:

add_filter( 'manage_edit-testimonial-quotes_columns', 'view_columns' ) ;
function view_columns( $columns ) {
  $columns = array(
    'cb' => '',
    'date' => __( 'Date' ),
    'tq_author' => __( 'Author' ),
    'tq_quote' => __( 'Testimonial' ),
  );
  return $columns;
}
add_action('manage_testimonial-quotes_posts_custom_column', 'custom_view_columns', 10, 2);
function custom_view_columns($column, $post_id){
global $post;
  switch ($column){
  case 'tq_author':
    echo '<a href="post.php?post=' . $post->ID . '&action=edit">';
    $column_content = the_field('tq_author');
    echo $column_content;
    echo '</a>';
    break;
  case 'tq_quote':
    $column_content = the_field('tq_quote');
    echo $column_content;
    break;
  default:
    break;
  }
}
4

4 回答 4

14

自 WP 4.3.0 以来最好的方法是使用

add_filter( 'list_table_primary_column', [ $this, 'list_table_primary_column' ], 10, 2 );

public function list_table_primary_column( $default, $screen ) {
    if ( 'edit-yourpostype' === $screen ) {
        $default = 'yourcolumn';
    }
    return $default;
}
于 2017-02-21T00:42:23.340 回答
4

真的怀疑有一个钩子来处理这个问题。所以,我什至不会检查核心并直接进入肮脏的解决方案:

add_action( 'admin_head-edit.php', 'so_13418722_move_quick_edit_links' );

function so_13418722_move_quick_edit_links()
{
    global $current_screen;
    if( 'post' != $current_screen->post_type )
        return;

    if( current_user_can( 'delete_plugins' ) )
    {
        ?>
        <script type="text/javascript">
        function so_13418722_doMove()
        {
            jQuery('td.post-title.page-title.column-title div.row-actions').each(function() {
                var $list = jQuery(this);
                var $firstChecked = $list.parent().parent().find('td.author.column-author');

                if ( !$firstChecked.html() )
                    return;

                $list.appendTo($firstChecked);
            }); 
        }
        jQuery(document).ready(function ($){
            so_13418722_doMove();
        });
        </script>
        <?php
    }
}

结果
移动快速编辑

备注

  • 调整你的 post_type:'post' != $current_screen->post_type
  • 调整你的列类:find('td.author.column-author')

Bug 和解决方案
您会注意到,更新后,快速编辑菜单会回到原来的位置。下面的 AJAX 拦截处理它。有关更多详细信息,请参阅此WordPress 开发人员答案

add_action( 'wp_ajax_inline-save', 'so_13418722_ajax_inline_save' , 0 );

/**
 Copy of the function wp_ajax_inline_save()
 http://core.trac.wordpress.org/browser/tags/3.4.2/wp-admin/includes/ajax-actions.php#L1315

 Only Modification marked at the end of the function with INTERCEPT
*/
function so_13418722_ajax_inline_save()
{
    global $wp_list_table;

    check_ajax_referer( 'inlineeditnonce', '_inline_edit' );

    if ( ! isset($_POST['post_ID']) || ! ( $post_ID = (int) $_POST['post_ID'] ) )
        wp_die();

    if ( 'page' == $_POST['post_type'] ) {
        if ( ! current_user_can( 'edit_page', $post_ID ) )
            wp_die( __( 'You are not allowed to edit this page.' ) );
    } else {
        if ( ! current_user_can( 'edit_post', $post_ID ) )
            wp_die( __( 'You are not allowed to edit this post.' ) );
    }

    set_current_screen( $_POST['screen'] );

    if ( $last = wp_check_post_lock( $post_ID ) ) {
        $last_user = get_userdata( $last );
        $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
        printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ),    esc_html( $last_user_name ) );
        wp_die();
    }

    $data = &$_POST;

    $post = get_post( $post_ID, ARRAY_A );
    $post = add_magic_quotes($post); //since it is from db

    $data['content'] = $post['post_content'];
    $data['excerpt'] = $post['post_excerpt'];

    // rename
    $data['user_ID'] = $GLOBALS['user_ID'];

    if ( isset($data['post_parent']) )
        $data['parent_id'] = $data['post_parent'];

    // status
    if ( isset($data['keep_private']) && 'private' == $data['keep_private'] )
        $data['post_status'] = 'private';
    else
        $data['post_status'] = $data['_status'];

    if ( empty($data['comment_status']) )
        $data['comment_status'] = 'closed';
    if ( empty($data['ping_status']) )
        $data['ping_status'] = 'closed';

    // update the post
    edit_post();

    $wp_list_table = _get_list_table('WP_Posts_List_Table');

    $mode = $_POST['post_view'];
    $wp_list_table->display_rows( array( get_post( $_POST['post_ID'] ) ) );

    // INTERCEPT: Check if it is our post_type, if not, do nothing  
    if( 'post' == $_POST['post_type'] )
    {
    ?>
        <script type="text/javascript">so_13418722_doMove();</script>
    <?php       
    }
    // end INTERCEPT    

    wp_die();

}
于 2012-12-01T19:16:55.917 回答
2

我也有同样的需要。

Nicola 的解决方案对我有用,但我收到“未定义变量”通知/错误。然后我意识到参数必须没有“[$this ...]”部分。

我猜那是文档的复制/粘贴。

所以这有效:

add_filter( 'list_table_primary_column', 'list_table_primary_column', 10, 2 );
function list_table_primary_column( $default, $screen ) {
    if ( 'edit-your_post_type' === $screen ) {
        // Set default columns to Minutes Spent.
        $default = 'your_column';
    }
    return $default;
}

如果您不知道 your_column 是什么,只需检查该列的标题并获取 ID。

于 2018-01-11T20:41:30.020 回答
0

就像公认的答案一样,如果不求助于 JS,就无法移动动作本身。但是,您可以使用 php 和内置的 Wordpress 函数非常轻松地构建自己的操作弹出版本。即使用户关闭了 JS,这个版本也可以工作。

假设您使用开关来填充自定义列,如果不适应您自己的功能,请执行以下操作:

switch ( $column ) {
    case 'your_column_name':
        echo "Your custom content here"; 
        my_custom_column_actions($post_id);
        break;
}

然后有一个单独的函数来重新创建操作弹出窗口。

function my_custom_column_actions($post_id) {
        if($_GET['post_status']!='trash') :
            $bare_url = "/wp-admin/post.php?post=$post_id&amp;action=trash";
            $nonce_url = wp_nonce_url( $bare_url, 'trash-post_'.$post_id );
            echo "  <div class='row-actions'>
                        <span class='edit'>
                            <a href='/wp-admin/post.php?post=$post_id&amp;action=edit'>Edit</a> | 
                        </span>
                        <span class='trash'>
                            <a href='$nonce_url' class='submitdelete'>Trash</a>
                        </span>
                        <span class='edit'>
                            <a href='".get_the_permalink($post_id)."'>View</a> | 
                        </span>
                    </div>";
        else: 
            $bare_url = "/wp-admin/post.php?post=$post_id&amp;action=untrash";
            $nonce_url = wp_nonce_url( $bare_url, 'untrash-post_'.$post_id );
            $delete_url = "/wp-admin/post.php?post=$post_id&amp;action=delete";
            $nonce_delete_url = wp_nonce_url( $delete_url, 'delete-post_'.$post_id );
            echo "  <div class='row-actions'>
                        <span class='untrash'>
                            <a href='$nonce_url' class='untrash'>Restore</a> | 
                        </span>
                        <span class='delete'>
                            <a href='$nonce_delete_url' class='submitdelete'>Delete Permanently</a>
                        </span>
                    </div>";
        endif;
    }

所有带有nonce_urls 的业务对于回收、恢复或删除都很重要;没有它,这些操作将无法进行。

如果您想将其包含在通常会出现的列中,例如作者或发布日期,则在声明自定义列时不需要包含标准列,而是包含获取相同数据的自定义列(加上对上述函数的调用)。

如果您想包含标题但不让动作出现在它下面,这也是如此 - 否则它们会出现两次。不要包含该title列,而是包含您自己的获取标题但包含新功能的自定义列。

您还可以通过编辑功能回显的内容来非常轻松地添加自己的操作。

于 2016-05-04T07:45:33.103 回答