manage_aiosp
The All In One SEO Pack manage aiosp hook.
Description
Parameters (1)
- 0. $aiosp_manage_seo (string) =>
'aiosp_manage_seo'
- The aiosp manage seo.
Usage
- To run the hook, copy the example below.
- $aiosp_manage_seo = apply_filters( 'manage_aiosp', $aiosp_manage_seo );
- if ( !empty( $aiosp_manage_seo ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the manage_aiosp callback
- function filter_manage_aiosp( $aiosp_manage_seo ) {
- // make filter magic happen here...
- return $aiosp_manage_seo;
- };
- // add the filter
- add_filter( 'manage_aiosp', 'filter_manage_aiosp', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'manage_aiosp', 'filter_manage_aiosp', 10, 1 );
Defined (4)
The filter is defined in the following location(s).
- /aioseop_class.php
- add_menu_page( $menu_name, $menu_name, apply_filters( 'manage_aiosp', 'aiosp_manage_seo' ), $file, array(
- /admin/aioseop_module_class.php
- $hookname = add_submenu_page( $parent_slug, $name, $name, apply_filters( 'manage_aiosp', 'aiosp_manage_seo' ), plugin_basename( $this->file ), array(
- $hookname = add_submenu_page( $parent_slug, $name, $name, apply_filters( 'manage_aiosp', 'aiosp_manage_seo' ), plugin_basename( $this->file ), array(
- $hookname = add_submenu_page( $parent_slug, $name, $name, apply_filters( 'manage_aiosp', 'aiosp_manage_seo' ), $this->get_prefix( $k ) . $k, array(