PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/princesspicnicevents.com/wp-content/plugins/penci-recipe/inc/sections/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/princesspicnicevents.com/wp-content/plugins/penci-recipe/inc/sections/panel.php |
<?php /** * @author : PenciDesign */ namespace SoledadFW\Customizer; /** * Class Theme Soledad Customizer */ class RecipeOption extends CustomizerOptionAbstract { public $panelID = 'penci_recipe_panel'; public function set_option() { $this->set_panel(); $this->set_section(); } public function set_panel() { $this->customizer->add_panel( [ 'id' => $this->panelID, 'title' => esc_html__( 'Recipe Options', 'soledad' ), 'priority' => $this->id, ] ); } public function set_section() { $this->add_lazy_section( 'penci_new_section_recipe_section', esc_html__( 'General Options', 'soledad' ), $this->panelID ); $this->add_lazy_section( 'penci_new_recipe_schema_section', esc_html__( 'Default Schema Data', 'soledad' ), $this->panelID, __( 'Because Google will validate your recipes to make it display good on search results. So, you should set a default value for all default fileds below to make Google validate your recipe bestest. If you want to modify any default field, let go to edit your posts and change recipe data there.', 'soledad' ) ); $this->add_lazy_section( 'penci_new_recipe_size_section', esc_html__( 'Font Size', 'soledad' ), $this->panelID ); $this->add_lazy_section( 'penci_new_recipe_typo_section', esc_html__( 'Colors', 'soledad' ), $this->panelID ); $this->add_lazy_section( 'penci_new_recipe_translate_section', esc_html__( 'Text Translation', 'soledad' ), $this->panelID ); } }