Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
index.php
require("gallery.php");
the_gallery();
header.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="<?php echo $language; ?>" lang="<?php echo $language; ?>" xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php the_gallery_head(); ?>
</head>
<body>
footer.php
</body>
</html>
header.php
// Add a Wordpress wp_head action that prints out the Plogger <head> code.
function wp_plogger_head() {
echo the_gallery_head();
}
add_action('wp_head', 'wp_plogger_head');
// Print the Wordpress header.
get_header();
footer.php
// The Wordpress footer
get_footer();
1 to 4 of 4