Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1318508

    Hi,

    How can I move the Author and Date to under the title on the blog post?

    Example in the private content.

    Thanks!

    #1318797

    Hey MikeTandySwag,
    Thank you for your patience and the link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $( '.post-entry' ).each(function() {
      $( this ).find( '.post-meta-infos:first' ).css({'margin-top': '0'}).insertAfter( $(this).find('.post-title.entry-title'));
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    #1319025

    Hi,

    No worries!

    Unfortunately that didn’t work

    #1319137

    Hi,
    Please check the script, it looks like I forgot to add a closing bracket
    2021-08-31_002.jpg
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

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