• filter

    jetpack_sitemap_ns

    Filter the attribute value pairs used for namespace and namespace URI mappings.

  • filter

    jetpack_custom_css_pre_post_id

    Filter the ID of the post where Custom CSS is stored, before the ID is retrieved.If the callback function returns a non-null value, then post_id() will immediately return that value, instead of retrieving the normal post ID.

  • action

    display_activate_module_setting_{$module_id}

    Fires to diplay a custom module activation screen.To add a module actionation screen use Jetpack::module_configuration_activation_screen method. Example: Jetpack::module_configuration_activation_screen( ‘manage’, array( $this, ‘manage_activate_screen’ ) );

  • filter

    jetpack_search_terms_{$module}

    Filter the search terms for a module Search terms are typically added to the module headers, under “Additional Search Queries”. Use syntax: function jetpack_$module_search_terms( $terms ) { $terms = _x( ‘term 1, term 2’, ‘search terms’, ‘jetpack’ ); return $terms; } add_filter( ‘jetpack_search_terms_$module’, ‘jetpack_$module_search_terms’ );

  • action

    jetpack_module_more_info_{$module}

    Allow the display of information text when Jetpack is connected to WordPress.com. The dynamic part of the action, $module, is the module slug.