aioseo_post_metabox_priority

Purpose

This filter can be used to control the priority of All in One SEO’s metabox on the Edit Post/Term screen.

Arguments (1)

  1. $priority (string) – The priority. Defaults to ‘high’.

Example code snippet

The code snippet below is just an example of how this filter can be used. In the example below, the priority of the metabox is set to ‘low’.

add_filter( 'aioseo_post_metabox_priority', 'aioseo_filter_metabox_priority' );

function aioseo_filter_metabox_priority( $priority) {
   return 'low';
}