Real Estate Terms

    [insert_php]
    // The Query
    query_posts(‘posts_per_page=-1’);

    // The Loop
    while ( have_posts() ) : the_post();
    echo ‘

  • ‘;
    echo ‘‘;
    the_title();
    echo ‘
    ‘;
    echo ‘
  • ‘;
    endwhile;

    // Reset Query
    wp_reset_query();
    [/insert_php]