aioseo_page_builder_integration_themes
aioseo_page_builder_integration_themes
Appears in: all-in-one-seo-pack.4.7.3, all-in-one-seo-pack.4.7.4.2, all-in-one-seo-pack.4.7.5.1, all-in-one-seo-pack.4.7.6, all-in-one-seo-pack.4.7.7, all-in-one-seo-pack.4.7.7.2, all-in-one-seo-pack.4.7.8, all-in-one-seo-pack.4.7.9.1, all-in-one-seo-pack.4.8.0, all-in-one-seo-pack.4.8.1, all-in-one-seo-pack.4.8.1.1
Hook Type: filter
Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1apply_filters('aioseo_page_builder_integration_themes') is found 1 times:
- /app/Common/Standalone/PageBuilders/Base.php line 129125126127128129130131132133134135
*
* @
return
bool Whether
or
not the theme is active.
*/
public
function
isThemeActive() {
$themes
= apply_filters(
'aioseo_page_builder_integration_themes'
,
$this
->themes,
$this
->integrationSlug );
$theme
= wp_get_theme();
foreach
(
$themes
as
$name
) {
if
(
$name
===
$theme
->stylesheet ||
$name
===
$theme
->template ) {
return
true;
}