Post.php
356 Bytes
<?php
namespace ACP\Editing\Ajax\TableRows;
use ACP\Editing\Ajax\TableRows;
final class Post extends TableRows {
public function register() {
add_action( 'edit_posts_per_page', [ $this, 'handle_request' ] );
}
public function handle_request() {
remove_action( 'edit_posts_per_page', [ $this, __FUNCTION__ ] );
parent::handle_request();
}
}