1 | <?php |
||||
2 | /** |
||||
3 | * Activity Widget Content Part |
||||
4 | * |
||||
5 | * @package lsx-tour-operators |
||||
6 | * @category activity |
||||
7 | * @subpackage widget |
||||
8 | */ |
||||
9 | |||||
10 | global $disable_placeholder, $disable_text, $post; |
||||
11 | |||||
12 | $has_single = ! lsx_to_is_single_disabled(); |
||||
13 | $permalink = ''; |
||||
14 | |||||
15 | if ( $has_single ) { |
||||
16 | $permalink = get_the_permalink(); |
||||
17 | } elseif ( ! is_post_type_archive( 'activity' ) ) { |
||||
18 | $has_single = true; |
||||
19 | $permalink = get_post_type_archive_link( 'activity' ) . '#activity-' . $post->post_name; |
||||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||||
20 | } |
||||
21 | ?> |
||||
22 | <article <?php post_class(); ?>> |
||||
23 | <?php if ( empty( $disable_placeholder ) ) { ?> |
||||
24 | <div class="lsx-to-widget-thumb"> |
||||
25 | <?php if ( $has_single ) { ?><a href="<?php echo esc_url( $permalink ); ?>"><?php } ?> |
||||
0 ignored issues
–
show
It seems like
$permalink can also be of type false ; however, parameter $url of esc_url() does only seem to accept string , maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
26 | <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
||||
27 | <?php if ( $has_single ) { ?></a><?php } ?> |
||||
28 | </div> |
||||
29 | <?php } ?> |
||||
30 | |||||
31 | <div class="lsx-to-widget-content"> |
||||
32 | <h4 class="lsx-to-widget-title text-center"> |
||||
33 | <?php if ( $has_single ) { ?><a href="<?php echo esc_url( $permalink ); ?>"><?php } ?> |
||||
34 | <?php the_title(); ?> |
||||
35 | <?php if ( $has_single ) { ?></a><?php } ?> |
||||
36 | </h4> |
||||
37 | |||||
38 | <?php |
||||
39 | // if ( empty( $disable_text ) ) { |
||||
40 | // lsx_to_tagline( '<p class="lsx-to-widget-tagline text-center">', '</p>' ); |
||||
41 | // } |
||||
42 | ?> |
||||
43 | |||||
44 | <div class="lsx-to-widget-meta-data"> |
||||
45 | <?php |
||||
46 | $meta_class = 'lsx-to-meta-data lsx-to-meta-data-'; |
||||
47 | |||||
48 | lsx_to_price( '<span class="' . $meta_class . 'price"><span class="lsx-to-meta-data-key">' . esc_html__( 'From price', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||||
49 | lsx_to_connected_destinations( '<span class="' . $meta_class . 'destinations"><span class="lsx-to-meta-data-key">' . __( 'Location', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||||
50 | lsx_to_connected_accommodation( '<span class="' . $meta_class . 'accommodations"><span class="lsx-to-meta-data-key">' . __( 'Accommodation', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||||
51 | lsx_to_connected_tours( '<span class="' . $meta_class . 'tours"><span class="lsx-to-meta-data-key">' . __( 'Tours', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||||
52 | ?> |
||||
53 | </div> |
||||
54 | |||||
55 | <?php |
||||
56 | ob_start(); |
||||
57 | lsx_to_widget_entry_content_top(); |
||||
58 | the_excerpt(); |
||||
59 | lsx_to_widget_entry_content_bottom(); |
||||
60 | $excerpt = ob_get_clean(); |
||||
61 | |||||
62 | if ( empty( $disable_text ) && ! empty( $excerpt ) ) { |
||||
63 | echo wp_kses_post( $excerpt ); |
||||
64 | } elseif ( $has_single ) { ?> |
||||
65 | <p><a href="<?php echo esc_url( $permalink ); ?>" class="moretag"><?php esc_html_e( 'View more', 'lsx-activities' ); ?></a></p> |
||||
66 | <?php } |
||||
67 | ?> |
||||
68 | </div> |
||||
69 | |||||
70 | </article> |
||||
71 |