Nombre del gancho
seopress_metaboxe_content_analysis
Versión requerida
2.3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sp_metaboxe_content_analysis($seopress_get_post_types) { | |
//Post types array, eg: post and page, notice the array_flip to convert values to keys | |
$seopress_get_post_types = array_flip(array('post','page')); | |
return $seopress_get_post_types; | |
} | |
add_filter('seopress_metaboxe_content_analysis', 'sp_metaboxe_content_analysis'); |