Plugin Directory

Changeset 3427563


Ignore:
Timestamp:
12/26/2025 06:10:54 AM (2 months ago)
Author:
msuekdeveloper
Message:

Fix readme customization code formatting

Location:
moonstack-ultimate-elementor-kit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • moonstack-ultimate-elementor-kit/tags/1.0.2/README.txt

    r3427537 r3427563  
    149149All widgets can be customized using WordPress hooks. Example:
    150150
    151 ```php
     151<pre>
    152152// Modify post title output
    153153add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) {
     
    157157// Add custom content after banner slider
    158158add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) {
    159     echo '<div class="custom-slider-navigation">Custom Nav</div>';
     159    echo '&lt;div class="custom-slider-navigation"&gt;Custom Nav&lt;/div&gt;';
    160160}, 10, 3);
    161 ```
     161</pre>
  • moonstack-ultimate-elementor-kit/trunk/README.txt

    r3427537 r3427563  
    149149All widgets can be customized using WordPress hooks. Example:
    150150
    151 ```php
     151<pre>
    152152// Modify post title output
    153153add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) {
     
    157157// Add custom content after banner slider
    158158add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) {
    159     echo '<div class="custom-slider-navigation">Custom Nav</div>';
     159    echo '&lt;div class="custom-slider-navigation"&gt;Custom Nav&lt;/div&gt;';
    160160}, 10, 3);
    161 ```
     161</pre>
Note: See TracChangeset for help on using the changeset viewer.