Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template for displaying all single posts.
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9.  
  10. get_header(); ?>
  11.  
  12. <div id="primary">
  13. <div id="content" role="main">
  14.  
  15. <?php while ( have_posts() ) : the_post(); ?>
  16.  
  17. <nav id="nav-single">
  18.  
  19. </nav><!-- #nav-single -->
  20.  
  21.  
  22. <span style="color: #808080;"><strong><h2>FRANCHISE INFORMATION</h2></strong></span><hr>
  23. <strong>Franchise name:</strong> <?php echo get_post_meta( $post->ID, '_ct_text_4f17c7139e5b4', true ); ?><br>
  24. <strong>Description:</strong> <?php echo get_post_meta( $post->ID, 'ct_Overview_text_4a11', true ); ?><br>
  25. <strong>Industry:</strong> <?php if ( get_post_meta( $post->ID, 'ct_Primary_in_selectbox_55f4', true ) ) { foreach ( get_post_meta( $post->ID, 'ct_Primary_in_selectbox_55f4', true ) as $value ) { echo $value . ', '; }} ?><br>
  26. <strong>Category:</strong> <br>
  27. <strong>Headquarters:</strong> <?php echo get_post_meta( $post->ID, '_ct_text_4f17c75f91522', true ); ?><br>
  28. <strong>Phone number:</strong> <br>
  29. <strong>Year business started:</strong> <?php echo get_post_meta( $post->ID, '_ct_text_4ecb2fb1ae06d', true ); ?><br>
  30. <strong>Year started franchising:</strong> <br>
  31. <br>
  32. <span style="color: #808080;"><strong><h2>FRANCHISE COSTS</h2></strong></span><hr>
  33. <strong>Franchise fee:</strong> <br>
  34. <strong>Liquid capital requirement:</strong> <br>
  35. <strong>Net worth requirement:</strong> <br>
  36. <strong>Multi unit discount:</strong> <?php if ( get_post_meta( $post->ID, 'ct_Multiunit__radio_4712', true ) ) { foreach ( get_post_meta( $post->ID, 'ct_Multiunit__radio_4712', true ) as $value ) { echo $value . ', '; }} ?><br>
  37. <strong>In house financing available:</strong> <?php if ( get_post_meta( $post->ID, 'ct_In_house_f_radio_972a', true ) ) { foreach ( get_post_meta( $post->ID, 'ct_In_house_f_radio_972a', true ) as $value ) { echo $value . ', '; }} ?><br>
  38. <strong>SBA approved:</strong> <br>
  39. <br>
  40. <span style="color: #808080;"><strong><h2>FRANCHISE STATS</h2></strong><hr></span>
  41. <strong>Number of franchise units:</strong> <?php echo get_post_meta( $post->ID, '_ct_text_4ecb2fe0ab4bf', true ); ?><br>
  42. <strong>Number of corporate units:</strong> <?php echo get_post_meta( $post->ID, '_ct_text_4ecb300fe7fab', true ); ?><br>
  43. <strong>Number of franhises sold in last 12 months:</strong> <br>
  44. <br />
  45. <span style="color: #808080;"><strong><strong>TRAITS OF SUCCESSFUL FRANCHISEES</strong></span><HR>
  46. <span style="color: #808080;"><strong><strong>AVAILABLE LOCATIONS</strong></span><HR>
  47. <?php echo get_the_term_list( $post->ID, 'locations', 'Before: ', ', ', 'After' ); ?>
  48.  
  49.  
  50. <?php echo get_post_meta( $post->ID, '_ct_text_4f17c75f91522', true ); ?>
  51.  
  52. <?php comments_template( '', true ); ?>
  53.  
  54. <?php endwhile; // end of the loop. ?>
  55.  
  56. </div><!-- #content -->
  57. </div><!-- #primary -->
  58.  
  59. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement