Advertisement
Guest User

shortocode not working

a guest
Nov 5th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <section id="upper">
  4. <div class="wrap">
  5. <h1><?php echo $wp_query->post->post_title; ?></h1>
  6. </div>
  7. </section>
  8.  
  9. <div class="wrap">
  10. <section id="content">
  11. <div class="inner">
  12. <?php echo $wp_query->post->post_content; ?>
  13. <?php the_content(); ?>
  14. </div>
  15. </section>
  16.  
  17. <?php get_sidebar(); ?>
  18. <div class="cleaner"></div>
  19.  
  20. <div id="small-contact">
  21. <img class="fl" src="<?php echo site_url(); ?>/wp-content/themes/kst/images/post-box.png" alt="post box icon" />
  22. <?php
  23. query_posts('name=dotazy');
  24.  
  25. if (have_posts())
  26. {
  27. the_post();
  28. the_content();
  29. }
  30.  
  31. wp_reset_query();
  32. ?>
  33. </div>
  34. </div>
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement