Note: The links marked with an asterisk (*) are so-called affiliate links. If you click on such an affiliate link and buy through this link, I get a commission from the respective provider. For you the price does not change.

You want to put the meta text of the Divi blog module above the blog title?

In this short tutorial I want to show you how to do it.

In order to display the meta information above the blog title, we only need a few lines of javascript code.

You just need to copy the following javascript code snippet …

<script type="text/javascript">
/* Divi blog module: Metatext above the title */
jQuery(function ($) {
"use strict";    
    $(".et_pb_post").each(function () {    
        var $title = $(".entry-title", this);         
        $(".post-meta", this).insertBefore($title); 
    });
});
</script>

… and add it to the header of your website under Divi / Divi Theme Options / Integration:

And you’re done! Now all blog modules should automatically display the metatexts above the blog title.

Dir hat der Beitrag gefallen? Dann teile ihn gerne!