Filter condition to allow skipping specific posts in sitemap.
jetpack_sitemap_skip_post
jetpack_sitemap_skip_postjetpack_sitemap_skip_postFilter condition to allow skipping specific posts in sitemap.
jetpack_sitemap_post_typesThe array of post types to be included in the sitemap. Add your custom post type name to the array to have posts of that type included in the sitemap. The default array includes ‘page’ and ‘post’. The result of this filter is cached in an option, ‘jetpack_sitemap_post_types’, so this filter only has to be applied once per generation.
jetpack_sitemap_nsFilter the attribute value pairs used for namespace and namespace URI mappings.
jetpack_sitemap_content_typeFilter the content type used to serve the sitemap XML files.
'jetpack_comment_form_enabled_for_' . get_post_type()Filters the setting that determines if Jetpack comments should be enabled for the current post type.
jetpack_custom_css_pre_post_idFilter 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.
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’ ) );
jetpack_sharing_display_markupFilters the content markup of the Jetpack sharing links
jetpack_module_configurable_{$module}Allow the display of a configuration link in the Jetpack Settings screen.
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’ );