Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2011
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <?/*
  2.  
  3. Template Name: Pagina Inicio
  4.  
  5. */
  6.  
  7. ?>
  8.  
  9. <--------Fim do o código------------>
  10.  
  11. <-----abaixo o codigo da pagina normal, mas que você pode mudar para fazer a pagina personalizada------>
  12.  
  13. <?php get_header(); ?>
  14. <div id="content-padding">
  15.   <div id="content">
  16.  
  17.   <?php if (function_exists('wp_snap')) { echo wp_snap(ALL); } ?>
  18.  
  19.   <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  20.  
  21.     <div class="post" id="post-<?php the_ID(); ?>">
  22.         <h2><?php the_title(); ?></h2>
  23.  
  24.     <div class="entry">
  25.         <?php the_content('<p>Continue reading »</p>'); ?>
  26.         <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  27.         <?php edit_post_link('Edit', '<p>', '</p>'); ?>
  28.         </div><!--/entry -->
  29.  
  30.     <?php comments_template(); ?>
  31.  
  32.     </div><!--/post -->
  33.  
  34.         <?php endwhile; endif; ?>
  35.  
  36.   </div><!--/content -->
  37. <?php
  38. include_once("real-footer.php");
  39. ?>
  40.  
  41. </div><!--/left-col -->
  42.  
  43. <?php
  44. $current_page = $post->ID; // Hack to prevent the no sidebar error
  45. include_once("sidebar-right.php");
  46. ?>
  47.  
  48. <?php get_footer(); ?>
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement