• Resolved entumas

    (@entumas)


    Hi Sybre!

    How could I modify the admin posts/pages/cpt tables so that the TSF column is always the last?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Sybre Waaijer

    (@cybr)

    Hi there Tumàs!

    I think this will do. TSF tries to find columns to prepend to; when nothing’s found, it’ll go to the back.

    add_filter( 'the_seo_framework_seo_column_keys_order', function() {
    	// We have to enter something useless; otherwise it goes to the front, probably because of the checkbox column.
    	return [ '_non_existing_column_' ];
    } );
    

    Cheers! ??

    Thread Starter entumas

    (@entumas)

    It’s perfect Sybre! Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘TSF admin post tables’ is closed to new replies.