Plugin Directory

Changeset 2658809


Ignore:
Timestamp:
01/17/2022 03:05:55 PM (4 years ago)
Author:
wepic
Message:

added 'thmfe_before_menu_item' and 'thmfe_after_menu_item' filters

Location:
thumbnail-hover-menu-for-elementor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • thumbnail-hover-menu-for-elementor/tags/1.0.0/widgets/thumbnail-hover-menu.php

    r2658766 r2658809  
    621621                >
    622622            ';
    623             $output .= apply_filters( 'thmfe_before_menu_item', $item );
     623            $output .= apply_filters( 'thmfe_before_menu_item', '', $item );
    624624            $output .= get_the_title( $item );
    625             $output .= apply_filters( 'thmfe_after_menu_item', $item );
     625            $output .= apply_filters( 'thmfe_after_menu_item', '', $item );
    626626            $output .= '</' . $tag . '>';
    627627            $output .= '</li>';
  • thumbnail-hover-menu-for-elementor/trunk/widgets/thumbnail-hover-menu.php

    r2658766 r2658809  
    621621                >
    622622            ';
    623             $output .= apply_filters( 'thmfe_before_menu_item', $item );
     623            $output .= apply_filters( 'thmfe_before_menu_item', '', $item );
    624624            $output .= get_the_title( $item );
    625             $output .= apply_filters( 'thmfe_after_menu_item', $item );
     625            $output .= apply_filters( 'thmfe_after_menu_item', '', $item );
    626626            $output .= '</' . $tag . '>';
    627627            $output .= '</li>';
Note: See TracChangeset for help on using the changeset viewer.