File: //home/cafsindia/public_html/wp-content/plugins/imageseo/src/Services/WordPressData.php
<?php
namespace ImageSeoWP\Services;
if (!defined('ABSPATH')) {
exit;
}
class WordPressData
{
public function getBlacklistPostTypesSocialMedia()
{
return apply_filters('imageseo_blacklist_post_types_social_media', [
'attachment',
'seopress_404',
'elementor_library',
]);
}
public function getAllPostTypesSocialMedia()
{
$args = [
'public' => true,
];
$postTypes = get_post_types($args, 'objects');
foreach ($this->getBlacklistPostTypesSocialMedia() as $value) {
if (array_key_exists($value, $postTypes)) {
unset($postTypes[$value]);
}
}
return apply_filters('imageseo_get_all_post_types', $postTypes);
}
public function getPageBuilders()
{
$builders = apply_filters('imageseo_get_page_builders', [
'beaver_builder' => class_exists('FLBuilderModel'),
'visual_composer' => defined('VCV_VERSION'),
'divi' => defined('ET_BUILDER_THEME'),
]);
if (apply_filters('imageseo_authorize_page_builder', false)) {
foreach ($builders as $key => $value) {
$builders[$key] = false;
}
}
return $builders;
}
}