Changeset 3427563
- Timestamp:
- 12/26/2025 06:10:54 AM (2 months ago)
- Location:
- moonstack-ultimate-elementor-kit
- Files:
-
- 2 edited
-
tags/1.0.2/README.txt (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
moonstack-ultimate-elementor-kit/tags/1.0.2/README.txt
r3427537 r3427563 149 149 All widgets can be customized using WordPress hooks. Example: 150 150 151 ```php 151 <pre> 152 152 // Modify post title output 153 153 add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) { … … 157 157 // Add custom content after banner slider 158 158 add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) { 159 echo ' <div class="custom-slider-navigation">Custom Nav</div>';159 echo '<div class="custom-slider-navigation">Custom Nav</div>'; 160 160 }, 10, 3); 161 ``` 161 </pre> -
moonstack-ultimate-elementor-kit/trunk/README.txt
r3427537 r3427563 149 149 All widgets can be customized using WordPress hooks. Example: 150 150 151 ```php 151 <pre> 152 152 // Modify post title output 153 153 add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) { … … 157 157 // Add custom content after banner slider 158 158 add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) { 159 echo ' <div class="custom-slider-navigation">Custom Nav</div>';159 echo '<div class="custom-slider-navigation">Custom Nav</div>'; 160 160 }, 10, 3); 161 ``` 161 </pre>
Note: See TracChangeset
for help on using the changeset viewer.