Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php while ( have_posts() ) : the_post(); ?>
  2. <?php
  3. // get the state name
  4. $state = '';
  5. $states = wp_get_post_terms( get_the_ID(), 'state' );
  6. if( $states ) {
  7. $state = ', ' . strtoupper( $states[0]->description );
  8. }
  9. $city_name = get_the_title();
  10. $title = $city_name . $state;
  11. ?>
  12.  
  13. <title>Cash for Gold Near <?php the_title(); ?> - Find Gold Buyers Near <?php the_title(); ?></title>
  14. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement