Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. // Special pages
  4. $frontpage_id = get_option( 'page_on_front' );
  5. $blog_id = get_option( 'page_for_posts' );
  6.  
  7. // Page templates
  8. $about_templates = get_pages(array(
  9. 'meta_key' => '_wp_page_template',
  10. 'meta_value' => 'page-about.php'
  11. ));
  12. $about_id = $about_templates[0]->ID;
  13.  
  14. ?>
  15.  
  16. <!-- Usage: -->
  17. <a href="<?php echo get_permalink($about_id); ?>">About Us</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement