Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
advanced...
/
packages
/
advanced...
/
framewor...
/
src
/
form
•
File:
class-field-size.php
•
Content:
<?php /** * Form size input * * @package AdvancedAds\Framework\Form * @author Advanced Ads <info@wpadvancedads.com> * @since 1.0.0 */ namespace AdvancedAds\Framework\Form; defined( 'ABSPATH' ) || exit; /** * Field size class */ class Field_Size extends Field { /** * Render field * * @return void */ public function render() { $name = $this->get( 'name' ); $value = $this->get( 'value' ); ?> <p class="<?php echo sanitize_html_class( $this->get( 'class' ) ); ?>"> <?php if ( $name['width'] ) : ?> <label><?php esc_html_e( 'Width', 'advanced-ads-framework' ); ?> <input type="number" value="<?php echo esc_attr( $value['width'] ); ?>" name="<?php echo esc_attr( $name['width'] ); ?>"> px</label> <?php endif; ?> <?php if ( $name['height'] ) : ?> <label><?php esc_html_e( 'Height', 'advanced-ads-framework' ); ?> <input type="number" value="<?php echo esc_attr( $value['height'] ); ?>" name="<?php echo esc_attr( $name['height'] ); ?>"> px</label> <?php endif; ?> </p> <?php } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List