Yoast\WP\SEO\Conditionals
Attachment_Redirections_Enabled_Conditional{}└─ Conditional
Conditional that is only met when the 'Redirect attachment URLs to the attachment itself' setting is enabled.
Хуков нет.
Использование
$Attachment_Redirections_Enabled_Conditional = new Attachment_Redirections_Enabled_Conditional(); // use class methods
Методы
- public __construct( Options_Helper $options )
- public is_met()
Код Attachment_Redirections_Enabled_Conditional{} Attachment Redirections Enabled Conditional{} Yoast 27.6
class Attachment_Redirections_Enabled_Conditional implements Conditional {
/**
* The options helper.
*
* @var Options_Helper
*/
private $options;
/**
* Attachment_Redirections_Enabled_Conditional constructor.
*
* @param Options_Helper $options The options helper.
*/
public function __construct( Options_Helper $options ) {
$this->options = $options;
}
/**
* Returns whether the 'Redirect attachment URLs to the attachment itself' setting has been enabled.
*
* @return bool `true` when the 'Redirect attachment URLs to the attachment itself' setting has been enabled.
*/
public function is_met() {
return $this->options->get( 'disable-attachment' );
}
}