Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
conditionals
/
third-party
:
elementor-activated-conditional.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Yoast\WP\SEO\Conditionals\Third_Party; use Yoast\WP\SEO\Conditionals\Conditional; /** * Conditional that is met when the Elementor plugin is installed and activated. */ class Elementor_Activated_Conditional implements Conditional { /** * Checks if the Elementor plugins is installed and activated. * * @return bool `true` when the Elementor plugin is installed and activated. */ public function is_met() { return \defined( 'ELEMENTOR__FILE__' ); } }