lightspeeddevelopment /
to-specials
| 1 | <?php |
||||||
| 2 | /** |
||||||
| 3 | * Special Type Taxonomy Type Part |
||||||
| 4 | * |
||||||
| 5 | * @package tour-operator |
||||||
| 6 | * @category special-type |
||||||
| 7 | */ |
||||||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||||||
| 8 | ?> |
||||||
| 9 | |||||||
| 10 | <?php |
||||||
| 11 | $description = term_description(); |
||||||
| 12 | if ( ! empty( $description ) ) : |
||||||
|
0 ignored issues
–
show
|
|||||||
| 13 | ?> |
||||||
| 14 | |||||||
| 15 | <div class="lsx-to-archive-header row"> |
||||||
| 16 | <div class="col-xs-12 <?php echo lsx_to_has_enquiry_contact() ? 'col-sm-12 col-md-6' : '' ?> lsx-to-archive-description"> |
||||||
|
0 ignored issues
–
show
|
|||||||
| 17 | <?php echo wp_kses_post( $description ); ?> |
||||||
| 18 | </div> |
||||||
| 19 | |||||||
| 20 | <?php if ( lsx_to_has_enquiry_contact() ) : ?> |
||||||
|
0 ignored issues
–
show
|
|||||||
| 21 | <div class="col-xs-12 col-sm-12 col-md-6"> |
||||||
| 22 | <div class="lsx-to-contact-widget"> |
||||||
| 23 | <?php |
||||||
| 24 | if ( function_exists( 'lsx_to_has_team_member' ) && lsx_to_has_team_member() ) { |
||||||
|
0 ignored issues
–
show
|
|||||||
| 25 | lsx_to_team_member_panel( '<div class="lsx-to-contact">', '</div>' ); |
||||||
|
0 ignored issues
–
show
The function
lsx_to_team_member_panel was not found. Maybe you did not declare it correctly or list all dependencies?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||||
| 26 | } else { |
||||||
| 27 | lsx_to_enquiry_contact( '<div class="lsx-to-contact">', '</div>' ); |
||||||
| 28 | } |
||||||
| 29 | |||||||
| 30 | lsx_to_enquire_modal(); |
||||||
| 31 | ?> |
||||||
| 32 | </div> |
||||||
| 33 | </div> |
||||||
| 34 | <?php endif ?> |
||||||
| 35 | </div> |
||||||
| 36 | |||||||
| 37 | <?php endif ?> |
||||||
|
0 ignored issues
–
show
|
|||||||
| 38 |