Yoast\WP\SEO\Initializers
Crawl_Cleanup_Permalinks::__construct
Crawl Cleanup Basic integration constructor.
Метод класса: Crawl_Cleanup_Permalinks{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Crawl_Cleanup_Permalinks = new Crawl_Cleanup_Permalinks(); $Crawl_Cleanup_Permalinks->__construct( $options_helper, $url_helper, $redirect_helper, $crawl_cleanup_helper );
- $options_helper(Options_Helper) (обязательный)
- The option helper.
- $url_helper(Url_Helper) (обязательный)
- The URL helper.
- $redirect_helper(Redirect_Helper) (обязательный)
- The Redirect Helper.
- $crawl_cleanup_helper(Crawl_Cleanup_Helper) (обязательный)
- The Crawl_Cleanup_Helper.
Код Crawl_Cleanup_Permalinks::__construct() Crawl Cleanup Permalinks:: construct Yoast 27.7
public function __construct(
Options_Helper $options_helper,
Url_Helper $url_helper,
Redirect_Helper $redirect_helper,
Crawl_Cleanup_Helper $crawl_cleanup_helper
) {
$this->options_helper = $options_helper;
$this->url_helper = $url_helper;
$this->redirect_helper = $redirect_helper;
$this->crawl_cleanup_helper = $crawl_cleanup_helper;
}