Theme Development
Theme Hooks & Helper Functions
Essential action hooks and template tag helpers to include in your theme layouts.
Essential Layout Hooks
Every theme template must include these action hooks so plugins can inject styles, scripts, and meta tags:
<!DOCTYPE html>
<html>
<head>
<title><?php echo get_title(); ?></title>
<?php do_action('head'); ?>
</head>
<body>
<?php echo get_header(); ?>
<main>
</main>
<?php echo get_footer(); ?>
<?php do_action('footer'); ?>
</body>
</html>
Last verified against AIPostify core. © 2026 AIPostify Marketplace Developer Documentation.