Js ve css dosyasını indir. Js dosyasını temanın js klasörüne css dosyasını da temanın css klasörüne at. Sonra functions.php ye aşağıdaki kodu ekle.


function tema_scripts() {
wp_enqueue_style('prism-css', get_template_directory_uri() . '/css/prism.css', array(), '1.0.0', false);

wp_enqueue_script('prism-js', get_template_directory_uri() . '/js/prism.js', array(), '1.0.0', true);

}
add_action('wp_enqueue_scripts', 'tema_scripts');


Sonra kullanmak istediğin kod türünü aşağıdaki gibi yaz.


p { color: red }