Skip to content

Commit

Permalink
Continue fix PCP
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Oct 14, 2024
1 parent 8ee9153 commit d1734cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== Meta Box - Elementor Integrator ===
Contributors: elightup, metabox, rilwis
Donate link: https://metabox.io/pricing/
Tags: meta box, custom meta box, meta boxes, custom meta boxes, custom fields, custom field, elementor, dynamic tags
Tags: meta box, custom fields, elementor, dynamic tags
Requires at least: 5.9
Requires PHP: 7.0
Tested up to: 6.6.2
Expand Down
2 changes: 1 addition & 1 deletion src/GroupField.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function get_skin_template() {
'post_type' => 'elementor_library',
'numberposts' => -1,
'post_status' => 'publish',
'tax_query' => [
'tax_query' => [ // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
[
'taxonomy' => 'elementor_library_type',
'field' => 'slug',
Expand Down
2 changes: 1 addition & 1 deletion src/Templates/display_field-taxonomy.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$term = get_term( $data );
echo $term->name;
echo esc_html( $term->name );

0 comments on commit d1734cf

Please sign in to comment.