Guest User

Untitled

a guest
Oct 18th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <p>
  2. <label><?php _e( 'نمایش توضیحات مطالب' ); ?></label>
  3. <select class="widefat" id="<?php echo $this->get_field_id( 'display' ); ?>" name="<?php echo $this->get_field_name( 'display' ); ?>">
  4. <option <?php selected( $instance['display'], 'block'); ?> value="block">بله</option>
  5. <option <?php selected( $instance['display'], 'none'); ?> value="none">خیر</option>
  6. </select>
  7. </p>
  8.  
  9. <span style="display:<?php if($display=='بله'): echo 'block';elseif($display=='خیر'): echo 'none';endif;?>;" class="tooltiptext hidden-xs"><?php echo esc_html( $item->get_description() ); ?></span>
  10.  
  11. $cat = apply_filters( 'widget_title', $instance['display'] );
  12.  
  13. $display = apply_filters( 'widget_title', $instance['display'] );
Advertisement
Add Comment
Please, Sign In to add comment