Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HTML Snippet per Shortcode ausgeben

https://www.kritzelblog.de/techniken-fuer-webentwicklung/wir-bauen-uns-ein-wordpress-plugin/

add_shortcode('show_html', 'add_the_html' );

function add_the_html(){
    return '<!-- HTML-Code-->';
};