Astra_Meta_Boxes::get_page_header_options()
Get page header Options.
Description
Source
File: inc/metabox/class-astra-meta-boxes.php
public function get_page_header_options() {
if ( ! defined( 'ASTRA_EXT_VER' ) ) {
return array();
}
/** @psalm-suppress UndefinedClass */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
$header_options = Astra_Target_Rules_Fields::get_post_selection( 'astra_adv_header' );
/** @psalm-suppress UndefinedClass */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
if ( empty( $header_options ) ) {
$header_options = array(
'' => __( 'No Page Headers Found', 'astra' ),
);
}
return $header_options;
}
Expand full source code Collapse full source code View on Trac