Version Description
- Remove line breaks from markup to prevent theme issues
Download this release
Release Info
| Developer | mikejolley |
| Plugin | |
| Version | 1.3.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.3.0 to 1.3.1
- includes/class-wp-job-manager-shortcodes.php +1 -8
- readme.txt +4 -1
- wp-job-manager.php +2 -2
includes/class-wp-job-manager-shortcodes.php
CHANGED
|
@@ -233,14 +233,7 @@ class WP_Job_Manager_Shortcodes {
|
|
| 233 |
wp_reset_postdata();
|
| 234 |
}
|
| 235 |
|
| 236 |
-
return '<div
|
| 237 |
-
class="job_listings"
|
| 238 |
-
data-show_filters="' . ( $show_filters && $show_filters !== 'false' ? 1 : 0 ) . '"
|
| 239 |
-
data-per_page="' . esc_attr( $per_page ) . '"
|
| 240 |
-
data-orderby="' . esc_attr( $orderby ) . '"
|
| 241 |
-
data-order="' . esc_attr( $order ) . '"
|
| 242 |
-
data-categories="' . esc_attr( implode( ',', $categories ) ) . '"
|
| 243 |
-
>' . ob_get_clean() . '</div>';
|
| 244 |
}
|
| 245 |
|
| 246 |
/**
|
| 233 |
wp_reset_postdata();
|
| 234 |
}
|
| 235 |
|
| 236 |
+
return '<div class="job_listings" data-show_filters="' . ( $show_filters && $show_filters !== 'false' ? 1 : 0 ) . '" data-per_page="' . esc_attr( $per_page ) . '" data-orderby="' . esc_attr( $orderby ) . '" data-order="' . esc_attr( $order ) . '" data-categories="' . esc_attr( implode( ',', $categories ) ) . '">' . ob_get_clean() . '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 237 |
}
|
| 238 |
|
| 239 |
/**
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jol
|
|
| 4 |
Tags: job listing, job board, job, jobs, company
|
| 5 |
Requires at least: 3.5
|
| 6 |
Tested up to: 3.7
|
| 7 |
-
Stable tag: 1.3.
|
| 8 |
|
| 9 |
Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
|
| 10 |
|
|
@@ -72,6 +72,9 @@ The manual installation method involves downloading the plugin and uploading it
|
|
| 72 |
|
| 73 |
== Changelog ==
|
| 74 |
|
|
|
|
|
|
|
|
|
|
| 75 |
= 1.3.0 =
|
| 76 |
* When using the [jobs] shortcode without filters, if jobs > per-page show the 'load more' link
|
| 77 |
* Clearfix for meta div
|
| 4 |
Tags: job listing, job board, job, jobs, company
|
| 5 |
Requires at least: 3.5
|
| 6 |
Tested up to: 3.7
|
| 7 |
+
Stable tag: 1.3.1
|
| 8 |
|
| 9 |
Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
|
| 10 |
|
| 72 |
|
| 73 |
== Changelog ==
|
| 74 |
|
| 75 |
+
= 1.3.1 =
|
| 76 |
+
* Remove line breaks from markup to prevent theme issues
|
| 77 |
+
|
| 78 |
= 1.3.0 =
|
| 79 |
* When using the [jobs] shortcode without filters, if jobs > per-page show the 'load more' link
|
| 80 |
* Clearfix for meta div
|
wp-job-manager.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: WP Job Manager
|
| 4 |
Plugin URI: http://mikejolley.com/projects/wp-job-manager/
|
| 5 |
Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
|
| 6 |
-
Version: 1.3.
|
| 7 |
Author: Mike Jolley
|
| 8 |
Author URI: http://mikejolley.com
|
| 9 |
Requires at least: 3.5
|
|
@@ -28,7 +28,7 @@ class WP_Job_Manager {
|
|
| 28 |
*/
|
| 29 |
public function __construct() {
|
| 30 |
// Define constants
|
| 31 |
-
define( 'JOB_MANAGER_VERSION', '1.3.
|
| 32 |
define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
| 33 |
define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
|
| 34 |
|
| 3 |
Plugin Name: WP Job Manager
|
| 4 |
Plugin URI: http://mikejolley.com/projects/wp-job-manager/
|
| 5 |
Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
|
| 6 |
+
Version: 1.3.1
|
| 7 |
Author: Mike Jolley
|
| 8 |
Author URI: http://mikejolley.com
|
| 9 |
Requires at least: 3.5
|
| 28 |
*/
|
| 29 |
public function __construct() {
|
| 30 |
// Define constants
|
| 31 |
+
define( 'JOB_MANAGER_VERSION', '1.3.1' );
|
| 32 |
define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
| 33 |
define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
|
| 34 |
|
