Skip to content

Instantly share code, notes, and snippets.

View basudevkunwar's full-sized avatar
🎯
Focusing

Basudev basudevkunwar

🎯
Focusing
View GitHub Profile
@basudevkunwar
basudevkunwar / functions.php
Created April 2, 2022 16:50 — forked from kalamun/functions.php
Add subtitle to wordpress pages, just after the title field nd before the content editor
/*
add to functions.php
then get the subtitle with the_subtitle() or get_the_subtitle() functions
*/
/* add subtitles */
add_action( "admin_footer-post.php", 'move_subtitle_after_title' );
add_action( "admin_footer-post-new.php", 'move_subtitle_after_title' );
function move_subtitle_after_title()