Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ |
Upload File : |
<?php /** * Template for displaying the title field * * @var array $field The field. * @package YITH\PluginFramework\Templates\Fields */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. list ( $field_id, $class, $name, $desc, $std, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'desc', 'std', 'custom_attributes', 'data' ); $class = isset( $class ) ? $class : 'title'; ?> <h3 id="<?php echo esc_attr( $field_id ); ?>" class="<?php echo esc_attr( $class ); ?>" <?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?> <?php yith_plugin_fw_html_data_to_string( $data, true ); ?> > <?php echo wp_kses_post( $desc ); ?> </h3>