Changeset 1238204
- Timestamp:
- 09/04/2015 05:09:26 PM (11 years ago)
- Location:
- track-connect/trunk
- Files:
-
- 4 edited
-
includes/class-listings-search-widget.php (modified) (1 diff)
-
includes/views/archive-listing.php (modified) (1 diff)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
track-connect/trunk/includes/class-listings-search-widget.php
r1238198 r1238204 65 65 echo '<option value="" ' . selected( $current == '', true, false ) . ">{$data['labels']['name']}</option>\n"; 66 66 foreach ( (array) $terms as $term ){ 67 echo "\t<option value='{$term->slug}' " . selected( $current == $term->slug, false ) . ">{$term->name}</option>\n";67 echo "\t<option value='{$term->slug}' >{$term->name}</option>\n"; 68 68 } 69 69 echo '</select>'; -
track-connect/trunk/includes/views/archive-listing.php
r1238198 r1238204 39 39 // Start the Loop. 40 40 $paged = (get_query_var('paged')) ? intval(get_query_var('paged')) : 1; 41 $args = array('post_type'=> 'listing','posts_per_page' => ' 3');41 $args = array('post_type'=> 'listing','posts_per_page' => '20'); 42 42 if(get_query_var('paged')){ 43 43 $args += array('paged' => $paged); -
track-connect/trunk/plugin.php
r1238200 r1238204 7 7 Author URI: http://www.trackhs.com 8 8 9 Version: 1.6. 59 Version: 1.6.6 10 10 11 11 License: GNU General Public License v2.0 (or later) … … 55 55 56 56 define( 'WP_LISTINGS_URL', plugin_dir_url( __FILE__ ) ); 57 define( 'WP_LISTINGS_VERSION', '1.6. 5' );57 define( 'WP_LISTINGS_VERSION', '1.6.6' ); 58 58 59 59 /** Load textdomain for translation */ -
track-connect/trunk/readme.txt
r1238200 r1238204 4 4 Requires at least: 3.7 5 5 Tested up to: 4.2.3 6 Stable tag: 1.6. 56 Stable tag: 1.6.6 7 7 8 8 Creates and syncs listing-type posts from TRACK PM, a cloud-based property management system (www.trackhs.com).
Note: See TracChangeset
for help on using the changeset viewer.