Astra_Elementor_Pro::override_meta()
Override sidebar, title etc with post meta
Description
Return
(void)
Source
File: inc/compatibility/class-astra-elementor-pro.php
public function override_meta() {
// don't override meta for `elementor_library` post type.
if ( 'elementor_library' == get_post_type() ) {
return;
}
// Override post meta for single pages.
$documents_single = Module::instance()->get_conditions_manager()->get_documents_for_location( 'single' );
if ( $documents_single ) {
foreach ( $documents_single as $document ) {
$this->override_with_post_meta( $document->get_post()->ID );
}
}
// Override post meta for archive pages.
$documents_archive = Module::instance()->get_conditions_manager()->get_documents_for_location( 'archive' );
if ( $documents_archive ) {
foreach ( $documents_archive as $document ) {
$this->override_with_post_meta( $document->get_post()->ID );
}
}
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.2.7 | Introduced. |