Front end inline editing?

Use the WP JSON REST API in conjunction with jQuery.ajax(). It works pretty well with custom endpoints. Just be sure to use nonces. <?php add_action( ‘rest_api_init’, function () { register_rest_route( ‘myplugin/v1’, ‘/author/(?P<id>\d+)’, array( ‘methods’ => ‘GET’, ‘callback’ => ‘my_awesome_func’, ) ); } );

Show only one page link in content pagination

To show prev/next links rather than numbered pagination you need to set the next_or_number argument to next. Then if you want to remove the previous links, you can filter the HTML for the links with the wp_link_pages filter. But, you can be craftier and filter on the wp_link_pages_link hook. Although it is used in a … Read more

Remove Content Filter

As the filter occurs within a class you must remove it by replacing $this (as you don’t run the remove_filter on the class, $this is not available) with the name of the class where it is declared. An example with a class called : Wecba, you will remove it like this : remove_filter(‘the_content’, array(‘Wecba’, ‘add_Content_Ads’), … Read more