This only works if you’re using the Easel theme, but this code will place the comic archive dropdown into the menubar if you want it there.
You add this to your child theme’s functions.php
add_action('easel-menubar-after','mytheme_add_archive_dropdown_to_menubar');
function mytheme_add_archive_dropdown_to_menubar() {
echo '<div class="menubar-archive-dropdown">';
if (function_exists('ceo_comic_archive_jump_to_chapter')) ceo_comic_archive_jump_to_chapter();
echo '</div>';
}
Then you can skin / clean up the look with some extra CSS add this to your child theme’s style.css
.menubar-archive-dropdown { float: right; display: inline-block; }
And there you have it, it will then display the comic archive chapter dropdown to the menubar with the Easel theme.
- Phil
Additional functionality added, the function now accepts two arguments, unhide hidden chapters (because they’re empty, i.e. show empty chapters) and you can exclude certain chapters from showing (comma separated)
ceo_comic_archive_jump_to_chapter($unhide = false, $exclude = '') {
so the line in the function above would look something like this:
if (function_exists('ceo_comic_archive_jump_to_chapter')) ceo_comic_archive_jump_to_chapter(true, '3,4,5');
Or you can just put ceo_comic_archive_jump_to_chapter() by itself without arguments and that will work fine, or even ceo_comic_archive_jump_to_chapter(true); by itself if you wanted. It’s all good.

