esc_html__( 'Hello Biz Home', 'hello-biz' ), 'icon' => 'paint-brush', 'url' => admin_url( 'admin.php?page=hello-biz' ), 'keywords' => [ 'theme', 'biz', 'business', 'hello', 'home', 'plus', '+' ], ]; } return $categories_data; } /** * @inheritDoc */ protected function register_hooks(): void { parent::register_hooks(); add_action( 'after_setup_theme', [ $this, 'content_width' ], 0 ); add_action( 'wp_enqueue_scripts', [ $this, 'scripts_styles' ] ); add_filter( 'hello-plus-theme/display-default-footer', [ $this, 'display_header_footer_filter' ] ); add_filter( 'hello-plus-theme/display-default-header', [ $this, 'display_header_footer_filter' ] ); add_filter( 'elementor/finder/categories', [ $this, 'add_hello_biz_finder_entry' ] ); } }