Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1171079

    Hi!
    Is it possible to visualize the date post on featured slider on the top, before the title?
    Thank you,
    Federica

    #1171131

    Hey Federica,

    Please refer to the following:

    Best regards,
    Jordan Shannon

    #1171138

    Thank you for your answer but I dont’ kwnoe how to let postdate appear on the image :/

    #1171140

    my element is a featured slider not post slider..

    #1171340

    Hi,

    Thank you for the update.

    Would you like to move the date before the title? Adding the following snippet in the functions.php file should help.

    // custom script
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
       $('.slide-entry').each(function() {
           var meta = $(this).find('.slide-meta'),
               img  = $(this).find('.slide-image');
               meta.insertAfter(img);
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');

    Best regards,
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.