امیدوارم عالی باشید در این مقاله میخوام به روش چونگی افزودن المان های قالب به المنتور به پردازم 😉
کد افزودن المان به صفحه ساز المنتور :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
<?php /** * Elementor oEmbed Widget. * * Elementor widget that inserts an embbedable content into the page, from any given URL. * * @since 1.0.0 */ class Elementor_oEmbed_Widget extends \Elementor\Widget_Base { /** * Get widget name. * * Retrieve oEmbed widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'oembed'; } /** * Get widget title. * * Retrieve oEmbed widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return __( 'oEmbed', 'plugin-name' ); } /** * Get widget icon. * * Retrieve oEmbed widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'fa fa-code'; } /** * Get widget categories. * * Retrieve the list of categories the oEmbed widget belongs to. * * @since 1.0.0 * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'general' ]; } /** * Register oEmbed widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * @access protected */ protected function _register_controls() { $this->start_controls_section( 'content_section', [ 'label' => __( 'Content', 'plugin-name' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'url', [ 'label' => __( 'URL to embed', 'plugin-name' ), 'type' => \Elementor\Controls_Manager::TEXT, 'input_type' => 'url', 'placeholder' => __( 'https://your-link.com', 'plugin-name' ), ] ); $this->end_controls_section(); } /** * Render oEmbed widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); $html = wp_oembed_get( $settings['url'] ); echo '<div class="oembed-elementor-widget">'; echo ( $html ) ? $html : $settings['url']; echo '</div>'; } } |
پاسخی بگذارید
برای نوشتن دیدگاه باید وارد بشوید.