Guest User

Untitled

a guest
Aug 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <?php if(is_front_page() || is_page('Technology')): ?>
  2. <div id="sideimg">
  3. <!-- Put the image you want here -->
  4. <img src="" alt="" />
  5. </div>
  6. <?php elseif(is_page('Solutions' || $post->post_parent == get_ID_by_name('Solutions'))){ ?>
  7. <ul id="sidebar">
  8. <li class="heading"><h2>Multilingual Solutions from 3PO</h2></li>
  9. <?php
  10. global $post;
  11. $myposts = get_posts('numberposts=-1&post_parent=17');
  12. foreach($myposts as $post) :
  13. setup_postdata($post);
  14. ?>
  15. <li><img src="<?php bloginfo('stylesheet_directory'); ?>/images/thumb.jpg" alt="" />
  16. <a href="<?php the_permalink(); ?>" class="title"><?php the_title(); ?></a>
  17. <?php the_excerpt(); ?>
  18. <a href="<?php the_permalink(); ?>">Learn more &raquo;</a>
  19. </li>
  20. <?php endforeach; ?>
  21. </ul>
  22. <?php }; ?>
Add Comment
Please, Sign In to add comment