Ejemplo n.º 1
0
bloginfo('pingback_url');
?>
" />
<?php 
/*
 * We add some JavaScript to pages with the comment form
 * to support sites with threaded comments (when in use).
 */
if (is_singular() && get_option('thread_comments')) {
    wp_enqueue_script('comment-reply');
}
/*
 * Always have wp_head() just before the closing </head>
 * tag of your theme, or you will break many plugins, which
 * generally use this hook to add elements to <head> such
 * as styles, scripts, and meta tags.
 */
wp_head();
?>
</head>

<body <?php 
body_class();
?>
>
<div id="wrapper" class="hfeed">
    <?php 
echo render_path('/_layout_header');
?>
	<div id="main">
Ejemplo n.º 2
0
<?php

/**
 * Template for displaying the footer
 *
 * Contains the closing of the id=main div and all content
 * after. Calls sidebar-footer.php for bottom widgets.
 *
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */
?>
	</div><!-- #main -->
<?php 
echo render_path('/_layout_footer');
?>
</div><!-- #wrapper -->

<?php 
/*
 * Always have wp_footer() just before the closing </body>
 * tag of your theme, or you will break many plugins, which
 * generally use this hook to reference JavaScript files.
 */
wp_footer();
?>
</body>
</html>