-
Notifications
You must be signed in to change notification settings - Fork 368
/
wp-job-manager-template.php
1445 lines (1259 loc) · 39.7 KB
/
wp-job-manager-template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Template Functions
*
* Template functions specifically created for job listings
*
* @author Mike Jolley
* @category Core
* @package wp-job-manager
* @version 1.25.3
*/
/**
* Gets and includes template files.
*
* @since 1.0.0
* @param mixed $template_name
* @param array $args (default: array()).
* @param string $template_path (default: '').
* @param string $default_path (default: '').
*/
function get_job_manager_template( $template_name, $args = [], $template_path = 'job_manager', $default_path = '' ) {
if ( $args && is_array( $args ) ) {
// phpcs:ignore WordPress.PHP.DontExtract.extract_extract -- Please, forgive us.
extract( $args );
}
include locate_job_manager_template( $template_name, $template_path, $default_path );
}
/**
* Locates a template and return the path for inclusion.
*
* This is the load order:
*
* yourtheme / $template_path / $template_name
* yourtheme / $template_name
* $default_path / $template_name
*
* @since 1.0.0
* @param string $template_name
* @param string $template_path (default: 'job_manager').
* @param string|bool $default_path (default: '') False to not load a default.
* @return string
*/
function locate_job_manager_template( $template_name, $template_path = 'job_manager', $default_path = '' ) {
// Look within passed path within the theme - this is priority.
$template = locate_template(
[
trailingslashit( $template_path ) . $template_name,
$template_name,
]
);
// Get default template.
if ( ! $template && false !== $default_path ) {
$default_path = $default_path ? $default_path : JOB_MANAGER_PLUGIN_DIR . '/templates/';
if ( file_exists( trailingslashit( $default_path ) . $template_name ) ) {
$template = trailingslashit( $default_path ) . $template_name;
}
}
// Return what we found.
return apply_filters( 'job_manager_locate_template', $template, $template_name, $template_path );
}
/**
* Gets template part (for templates in loops).
*
* @since 1.0.0
* @param string $slug
* @param string $name (default: '').
* @param string $template_path (default: 'job_manager').
* @param string|bool $default_path (default: '') False to not load a default.
*/
function get_job_manager_template_part( $slug, $name = '', $template_path = 'job_manager', $default_path = '' ) {
$template = '';
if ( $name ) {
$template = locate_job_manager_template( "{$slug}-{$name}.php", $template_path, $default_path );
}
// If template file doesn't exist, look in yourtheme/slug.php and yourtheme/job_manager/slug.php.
if ( ! $template ) {
$template = locate_job_manager_template( "{$slug}.php", $template_path, $default_path );
}
if ( $template ) {
load_template( $template, false );
}
}
/**
* Adds custom body classes.
*
* @since 1.16.0
* @param array $classes
* @return array
*/
function job_manager_body_class( $classes ) {
$classes = (array) $classes;
$classes[] = sanitize_title( wp_get_theme() );
return array_unique( $classes );
}
add_filter( 'body_class', 'job_manager_body_class' );
/**
* Get jobs pagination for [jobs] shortcode.
*
* @since 1.13.0
* @param int $max_num_pages
* @param int $current_page
* @return string
*/
function get_job_listing_pagination( $max_num_pages, $current_page = 1 ) {
ob_start();
get_job_manager_template(
'job-pagination.php',
[
'max_num_pages' => $max_num_pages,
'current_page' => absint( $current_page ),
]
);
return ob_get_clean();
}
/**
* Displays the jobs status.
*
* @since 1.0.0
* @param int|WP_Post $post
*/
function the_job_status( $post = null ) {
echo wp_kses_post( get_the_job_status( $post ) );
}
/**
* Gets the jobs status.
*
* @since 1.
* @param int|WP_Post $post
* @return string
*/
function get_the_job_status( $post = null ) {
$post = get_post( $post );
$status = $post->post_status;
$statuses = get_job_listing_post_statuses();
if ( 'preview' === $status ) {
$status = 'draft';
}
if ( isset( $statuses[ $status ] ) ) {
$status = $statuses[ $status ];
} else {
$status = esc_html__( 'Inactive', 'wp-job-manager' );
}
return apply_filters( 'the_job_status', $status, $post );
}
/**
* Checks whether or not the position has been marked as filled.
*
* @since 1.0.0
* @param WP_Post|int $post
* @return boolean
*/
function is_position_filled( $post = null ) {
$post = get_post( $post );
return (bool) $post->_filled;
}
/**
* Checks whether or not the position has been featured.
*
* @since 1.2.0
* @param WP_Post|int $post
* @return boolean
*/
function is_position_featured( $post = null ) {
$post = get_post( $post );
return (bool) $post->_featured;
}
/**
* Checks whether or not applications are allowed.
*
* @since 1.21.0
* @param WP_Post|int $post
* @return boolean
*/
function candidates_can_apply( $post = null ) {
$post = get_post( $post );
return apply_filters( 'job_manager_candidates_can_apply', ( ! is_position_filled() && ! in_array( $post->post_status, [ 'preview', 'expired' ], true ) ), $post );
}
/**
* Displays the permalink for the job listing post.
*
* @since 1.0.0
* @param int|WP_Post $post (default: null).
* @return void
*/
function the_job_permalink( $post = null ) {
echo esc_url( get_the_job_permalink( $post ) );
}
/**
* Gets the permalink for a job listing.
*
* @since 1.0.0
* @param int|WP_Post $post (default: null).
* @return string
*/
function get_the_job_permalink( $post = null ) {
$post = get_post( $post );
$link = get_permalink( $post );
return apply_filters( 'the_job_permalink', $link, $post );
}
/**
* Gets the application method for the job listing.
*
* @since 1.0.0
* @param int|WP_Post $post (default: null).
* @return stdClass|bool|null
*/
function get_the_job_application_method( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return;
}
$method = new stdClass();
$apply = $post->_application;
if ( empty( $apply ) ) {
return apply_filters( 'the_job_application_method', false, $post );
}
if ( strstr( $apply, '@' ) && is_email( $apply ) ) {
$method->type = 'email';
$method->raw_email = $apply;
$method->email = antispambot( $apply );
// translators: %1$s is the job listing title; %2$s is the URL for the current WordPress instance.
$method->subject = apply_filters( 'job_manager_application_email_subject', sprintf( esc_html__( 'Application via %1$s listing on %2$s', 'wp-job-manager' ), esc_html( $post->post_title ), esc_url( home_url() ) ), $post );
} else {
if ( strpos( $apply, 'http' ) !== 0 ) {
$apply = 'http://' . $apply;
}
$method->type = 'url';
$method->url = $apply;
}
return apply_filters( 'the_job_application_method', $method, $post );
}
/**
* Get the employment types for the job listing.
*
* @since 1.28.0
*
* @param WP_Post|int|null $post
* @return bool|array
*/
function wpjm_get_job_employment_types( $post = null ) {
if ( ! wpjm_job_listing_employment_type_enabled() ) {
return false;
}
$employment_types = [];
$job_types = wpjm_get_the_job_types( $post );
if ( ! empty( $job_types ) ) {
foreach ( $job_types as $job_type ) {
$employment_type = get_term_meta( $job_type->term_id, 'employment_type', true );
if ( ! empty( $employment_type ) ) {
$employment_types[] = $employment_type;
}
}
}
/**
* Filter the employment types for a job listing.
*
* @since 1.28.0
*
* @param array $employment_types Employment types.
* @param WP_Post|int|null $post
*/
return apply_filters( 'wpjm_get_job_employment_types', array_unique( $employment_types ), $post );
}
/**
* Returns if we allow indexing of a job listing.
*
* @since 1.28.0
*
* @param WP_Post|int|null $post
* @return bool
*/
function wpjm_allow_indexing_job_listing( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return true;
}
// Only index job listings that are un-filled and published.
$index_job_listing = ! is_position_filled( $post ) && 'publish' === $post->post_status;
/**
* Filter if we should allow indexing of job listing.
*
* @since 1.28.0
*
* @param bool $index_job_listing True if we should allow indexing of job listing.
* @param WP_Post|int|null $post
*/
return apply_filters( 'wpjm_allow_indexing_job_listing', $index_job_listing, $post );
}
/**
* Returns if we output job listing structured data for a post.
*
* @since 1.28.0
*
* @param WP_Post|int|null $post
* @return bool
*/
function wpjm_output_job_listing_structured_data( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return false;
}
// Only show structured data for un-filled and published job listings.
$output_structured_data = ! is_position_filled( $post ) && 'publish' === $post->post_status;
/**
* Filter if we should output structured data.
*
* @since 1.28.0
*
* @param bool $output_structured_data True if we should show structured data for post.
* @param WP_Post|int|null $post
*/
return apply_filters( 'wpjm_output_job_listing_structured_data', $output_structured_data, $post );
}
/**
* Gets the structured data for the job listing.
*
* @since 1.28.0
* @see https://developers.google.com/search/docs/data-types/job-postings
*
* @param WP_Post|int|null $post
* @return bool|array False if functionality is disabled; otherwise array of structured data.
*/
function wpjm_get_job_listing_structured_data( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return false;
}
$data = [];
$data['@context'] = 'http://schema.org/';
$data['@type'] = 'JobPosting';
$data['datePosted'] = get_post_datetime( $post )->format( 'c' );
$job_expires = WP_Job_Manager_Post_Types::instance()->get_job_expiration( $post );
if ( ! empty( $job_expires ) ) {
$data['validThrough'] = $job_expires->format( 'c' );
}
$data['title'] = wp_strip_all_tags( wpjm_get_the_job_title( $post ) );
$data['description'] = wpjm_get_the_job_description( $post );
$employment_types = wpjm_get_job_employment_types();
if ( ! empty( $employment_types ) ) {
$data['employmentType'] = $employment_types;
}
$data['hiringOrganization'] = [];
$data['hiringOrganization']['@type'] = 'Organization';
$data['hiringOrganization']['name'] = get_the_company_name( $post );
$company_website = get_the_company_website( $post );
if ( $company_website ) {
$data['hiringOrganization']['sameAs'] = $company_website;
$data['hiringOrganization']['url'] = $company_website;
}
$company_logo = get_the_company_logo( $post, 'full' );
if ( $company_logo ) {
$data['hiringOrganization']['logo'] = $company_logo;
}
$data['identifier'] = [];
$data['identifier']['@type'] = 'PropertyValue';
$data['identifier']['name'] = get_the_company_name( $post );
$data['identifier']['value'] = get_the_guid( $post );
$location = get_the_job_location( $post );
if ( ! empty( $location ) ) {
$data['jobLocation'] = [];
$data['jobLocation']['@type'] = 'Place';
$data['jobLocation']['address'] = wpjm_get_job_listing_location_structured_data( $post );
if ( $post->_remote_position ) {
$data['jobLocationType'] = 'TELECOMMUTE';
}
if ( empty( $data['jobLocation']['address'] ) ) {
$data['jobLocation']['address'] = $location;
}
}
$data['directApply'] = ! empty( get_the_job_application_method( $post ) );
$salary = get_the_job_salary( $post );
$currency = get_the_job_salary_currency( $post );
$unit = get_the_job_salary_unit( $post );
if ( ! empty( $salary ) ) {
$data['baseSalary'] = [];
$data['baseSalary']['@type'] = 'MonetaryAmount';
$data['baseSalary']['currency'] = $currency;
$data['baseSalary']['value']['@type'] = 'QuantitativeValue';
$data['baseSalary']['value']['value'] = $salary;
$data['baseSalary']['value']['unitText'] = $unit;
}
/**
* Filter the structured data for a job listing.
*
* @since 1.28.0
*
* @param bool|array $structured_data False if functionality is disabled; otherwise array of structured data.
* @param WP_Post $post
*/
return apply_filters( 'wpjm_get_job_listing_structured_data', $data, $post );
}
/**
* Gets the job listing location data.
*
* @see http://schema.org/PostalAddress
*
* @param WP_Post $post
* @return array|bool
*/
function wpjm_get_job_listing_location_structured_data( $post ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return false;
}
$mapping = [];
$mapping['streetAddress'] = [ 'street_number', 'street' ];
$mapping['addressLocality'] = 'city';
$mapping['addressRegion'] = 'state_short';
$mapping['postalCode'] = 'postcode';
$mapping['addressCountry'] = 'country_short';
$address = [];
$address['@type'] = 'PostalAddress';
foreach ( $mapping as $schema_key => $geolocation_key ) {
if ( is_array( $geolocation_key ) ) {
$values = [];
foreach ( $geolocation_key as $sub_geo_key ) {
$geo_value = get_post_meta( $post->ID, 'geolocation_' . $sub_geo_key, true );
if ( ! empty( $geo_value ) ) {
$values[] = $geo_value;
}
}
$value = implode( ' ', $values );
} else {
$value = get_post_meta( $post->ID, 'geolocation_' . $geolocation_key, true );
}
if ( ! empty( $value ) ) {
$address[ $schema_key ] = $value;
}
}
// No address parts were found.
if ( 1 === count( $address ) ) {
$address = false;
}
/**
* Gets the job listing location structured data.
*
* @since 1.28.0
*
* @param array|bool $address Array of address data.
* @param WP_Post $post
*/
return apply_filters( 'wpjm_get_job_listing_location_structured_data', $address, $post );
}
/**
* Displays the job title for the listing.
*
* @since 1.27.0
* @param int|WP_Post $post
*/
function wpjm_the_job_title( $post = null ) {
$job_title = wpjm_get_the_job_title( $post );
if ( $job_title ) {
echo wp_kses_post( $job_title );
}
}
/**
* Gets the job title for the listing.
*
* @since 1.27.0
* @param int|WP_Post $post (default: null).
* @return string|bool|null
*/
function wpjm_get_the_job_title( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return null;
}
$title = wp_strip_all_tags( get_the_title( $post ) );
/**
* Filter for the job title.
*
* @since 1.27.0
* @param string $title Title to be filtered.
* @param int|WP_Post $post
*/
return apply_filters( 'wpjm_the_job_title', $title, $post );
}
/**
* Displays the job description for the listing.
*
* @since 1.28.0
* @param int|WP_Post $post
*/
function wpjm_the_job_description( $post = null ) {
$job_description = wpjm_get_the_job_description( $post );
if ( $job_description ) {
WP_Job_Manager_Post_Types::output_kses_post( $job_description );
}
}
/**
* Gets the job description for the listing.
*
* @since 1.28.0
* @param int|WP_Post $post (default: null).
* @return string|bool|null
*/
function wpjm_get_the_job_description( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return null;
}
$description = apply_filters( 'the_job_description', wp_kses_post( $post->post_content ) );
/**
* Filter for the job description.
*
* @since 1.28.0
* @param string $job_description Job description to be filtered.
* @param int|WP_Post $post
*/
return apply_filters( 'wpjm_the_job_description', $description, $post );
}
/**
* Displays multiple job types for the listing.
*
* @since 1.27.0
*
* @param int|WP_Post $post Current post object.
* @param string $separator String to join the term names with.
*/
function wpjm_the_job_types( $post = null, $separator = ', ' ) {
if ( ! get_option( 'job_manager_enable_types' ) ) {
return;
}
$job_types = wpjm_get_the_job_types( $post );
if ( $job_types ) {
$names = wp_list_pluck( $job_types, 'name' );
echo esc_html( implode( $separator, $names ) );
}
}
/**
* Gets the job type for the listing.
*
* @since 1.27.0
*
* @param int|WP_Post $post (default: null).
* @return bool|array
*/
function wpjm_get_the_job_types( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return false;
}
$types = get_the_terms( $post->ID, \WP_Job_Manager_Post_Types::TAX_LISTING_TYPE );
if ( empty( $types ) || is_wp_error( $types ) ) {
$types = [];
}
// Return single if not enabled.
if ( ! empty( $types ) && ! job_manager_multi_job_type() ) {
$types = [ current( $types ) ];
}
/**
* Filter the returned job types for a post.
*
* @since 1.27.0
*
* @param array $types
* @param WP_Post $post
*/
return apply_filters( 'wpjm_the_job_types', $types, $post );
}
/**
* Displays job categories for the listing.
*
* @since 1.31.0
*
* @param int|WP_Post $post Current post object.
* @param string $separator String to join the term names with.
*/
function wpjm_the_job_categories( $post = null, $separator = ', ' ) {
if ( ! get_option( 'job_manager_enable_categories' ) ) {
return;
}
$job_categories = wpjm_get_the_job_categories( $post );
if ( $job_categories ) {
$names = wp_list_pluck( $job_categories, 'name' );
echo esc_html( implode( $separator, $names ) );
}
}
/**
* Gets the job type for the listing.
*
* @since 1.31.0
*
* @param int|WP_Post $post (default: null).
* @return bool|array
*/
function wpjm_get_the_job_categories( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return false;
}
$categories = get_the_terms( $post->ID, \WP_Job_Manager_Post_Types::TAX_LISTING_CATEGORY );
if ( empty( $categories ) || is_wp_error( $categories ) ) {
$categories = [];
}
/**
* Filter the returned job categories for a post.
*
* @since 1.31.0
*
* @param array $types
* @param WP_Post $post
*/
return apply_filters( 'wpjm_the_job_categories', $categories, $post );
}
/**
* Returns the registration fields used when an account is required.
*
* @since 1.27.0
*
* @return array $registration_fields.
*/
function wpjm_get_registration_fields() {
$generate_username_from_email = job_manager_generate_username_from_email();
$use_standard_password_setup_email = wpjm_use_standard_password_setup_email();
$account_required = job_manager_user_requires_account();
$registration_fields = [];
if ( job_manager_enable_registration() ) {
$registration_fields['create_account_email'] = [
'type' => 'text',
'label' => esc_html__( 'Your email', 'wp-job-manager' ),
'placeholder' => __( '[email protected]', 'wp-job-manager' ),
'required' => $account_required,
// phpcs:ignore WordPress.Security.NonceVerification.Missing -- Just used to populate value when validation failed.
'value' => isset( $_POST['create_account_email'] ) ? sanitize_text_field( wp_unslash( $_POST['create_account_email'] ) ) : '',
];
if ( ! $generate_username_from_email ) {
$registration_fields['create_account_username'] = [
'type' => 'text',
'label' => esc_html__( 'Username', 'wp-job-manager' ),
'required' => $account_required,
// phpcs:ignore WordPress.Security.NonceVerification.Missing -- Just used to populate value when validation failed.
'value' => isset( $_POST['create_account_username'] ) ? sanitize_text_field( wp_unslash( $_POST['create_account_username'] ) ) : '',
];
}
if ( ! $use_standard_password_setup_email ) {
$registration_fields['create_account_password'] = [
'type' => 'password',
'label' => esc_html__( 'Password', 'wp-job-manager' ),
'autocomplete' => false,
'required' => $account_required,
];
$password_hint = wpjm_get_password_rules_hint();
if ( $password_hint ) {
$registration_fields['create_account_password']['description'] = $password_hint;
}
$registration_fields['create_account_password_verify'] = [
'type' => 'password',
'label' => esc_html__( 'Verify Password', 'wp-job-manager' ),
'autocomplete' => false,
'required' => $account_required,
];
}
}
/**
* Filters the fields used at registration.
*
* @since 1.27.0
*
* @param array $registration_fields
*/
return apply_filters( 'wpjm_get_registration_fields', $registration_fields );
}
/**
* Displays the published date of the job listing.
*
* @since 1.25.3
* @param int|WP_Post $post (default: null).
*/
function the_job_publish_date( $post = null ) {
$date_format = get_option( 'job_manager_date_format' );
$wp_date_format = get_option( 'date_format' ) ?: JOB_MANAGER_DATE_FORMAT_FALLBACK;
if ( 'default' === $date_format ) {
$display_date = esc_html__( 'Posted on ', 'wp-job-manager' ) . wp_date( $wp_date_format, get_post_timestamp( $post ) );
} else {
$post_timestamp = get_post_timestamp( $post );
$current_time = time();
// translators: Placeholder %s is the relative, human readable time since the job listing was posted.
$display_date = sprintf( esc_html__( 'Posted %s ago', 'wp-job-manager' ), human_time_diff( $post_timestamp, $current_time ) );
if ( $post_timestamp > $current_time ) {
// translators: Placeholder %s is the relative, human readable time the job listing is scheduled to be published.
$display_date = sprintf( esc_html__( 'Scheduled to publish in %s', 'wp-job-manager' ), human_time_diff( $post_timestamp, $current_time ) );
}
}
echo '<time datetime="' . esc_attr( get_post_datetime( $post )->format( 'Y-m-d' ) ) . '">' . wp_kses_post( $display_date ) . '</time>';
}
/**
* Gets the published date of the job listing.
*
* @since 1.25.3
* @param int|WP_Post $post (default: null).
* @return string|int|false
*/
function get_the_job_publish_date( $post = null ) {
$date_format = get_option( 'job_manager_date_format' );
$wp_date_format = get_option( 'date_format' ) ?: JOB_MANAGER_DATE_FORMAT_FALLBACK;
if ( 'default' === $date_format ) {
return wp_date( $wp_date_format, get_post_datetime()->getTimestamp() );
} else {
// translators: Placeholder %s is the relative, human readable time since the job listing was posted.
return sprintf( __( 'Posted %s ago', 'wp-job-manager' ), human_time_diff( get_post_timestamp(), time() ) );
}
}
/**
* Displays the location for the job listing.
*
* @since 1.0.0
* @param bool $map_link whether or not to link to Google Maps.
* @param int|WP_Post $post
*/
function the_job_location( $map_link = true, $post = null ) {
$location = get_the_job_location( $post );
$post = get_post( $post );
if ( $post->_remote_position ) {
$remote_label = apply_filters( 'the_job_location_anywhere_text', __( 'Remote', 'wp-job-manager' ) );
if ( $location ) {
$location = "$location <small>($remote_label)</small>";
} else {
$location = $remote_label;
$map_link = false;
}
}
if ( $location ) {
if ( $map_link ) {
// If linking to google maps, we don't want anything but text here.
echo wp_kses_post(
apply_filters(
'the_job_location_map_link',
'<a class="google_map_link" href="' . esc_url( 'https://maps.google.com/maps?q=' . rawurlencode( wp_strip_all_tags( $location ) ) . '&zoom=14&size=512x512&maptype=roadmap&sensor=false' ) . '" target="_blank">' . esc_html( wp_strip_all_tags( $location ) ) . '</a>',
$location,
$post
)
);
} else {
echo wp_kses_post( $location );
}
} else {
echo wp_kses_post( apply_filters( 'the_job_location_anywhere_text', __( 'Anywhere', 'wp-job-manager' ) ) );
}
}
/**
* Gets the location for the job listing.
*
* @since 1.0.0
* @param int|WP_Post $post (default: null).
* @return string|null
*/
function get_the_job_location( $post = null ) {
$post = get_post( $post );
if ( ! $post || \WP_Job_Manager_Post_Types::PT_LISTING !== $post->post_type ) {
return null;
}
$job_location = $post->_job_location;
if ( get_option( 'job_manager_display_location_address' ) === '1' ) {
// phpcs:ignore PHPCompatibility.Operators.NewOperators.t_coalesceFound
$job_location_address = get_post_meta( $post->ID, 'geolocation_formatted_address', true ) ?? '';
if ( $job_location_address ) {
$job_location = $job_location_address;
}
}
return apply_filters( 'the_job_location', $job_location, $post );
}
/**
* Displays the company logo.
*
* @since 1.0.0
* @param string $size (default: 'full').
* @param mixed $default (default: null).
* @param int|WP_Post $post (default: null).
*/
function the_company_logo( $size = 'thumbnail', $default = null, $post = null ) {
$logo = get_the_company_logo( $post, $size );
if ( has_post_thumbnail( $post ) ) {
echo '<img class="company_logo" src="' . esc_url( $logo ) . '" alt="' . esc_attr( get_the_company_name( $post ) ) . '" />';
// Before 1.24.0, logo URLs were stored in post meta.
} elseif ( ! empty( $logo ) && ( strstr( $logo, 'http' ) || file_exists( $logo ) ) ) {
if ( 'full' !== $size ) {
$logo = job_manager_get_resized_image( $logo, $size );
}
echo '<img class="company_logo" src="' . esc_url( $logo ) . '" alt="' . esc_attr( get_the_company_name( $post ) ) . '" />';
} elseif ( $default ) {
echo '<img class="company_logo" src="' . esc_url( $default ) . '" alt="' . esc_attr( get_the_company_name( $post ) ) . '" />';
} else {
echo '<img class="company_logo" src="' . esc_url( apply_filters( 'job_manager_default_company_logo', JOB_MANAGER_PLUGIN_URL . '/assets/images/company.png' ) ) . '" alt="' . esc_attr( get_the_company_name( $post ) ) . '" />';
}
}
/**
* Gets the company logo.
*
* @since 1.0.0
* @param int|WP_Post $post (default: null).
* @param string $size
* @return string Image SRC.
*/
function get_the_company_logo( $post = null, $size = 'thumbnail' ) {
$post = get_post( $post );
if ( has_post_thumbnail( $post->ID ) ) {
$src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $size );
return $src ? $src[0] : '';
} elseif ( ! empty( $post->_company_logo ) ) {
// Before 1.24.0, logo URLs were stored in post meta.
return apply_filters( 'the_company_logo', $post->_company_logo, $post );
}
return '';
}
/**
* Resizes and returns the url of an image.
*
* @since 1.5.1
* @param string $logo
* @param string $size
* @return string
*/
function job_manager_get_resized_image( $logo, $size ) {
global $_wp_additional_image_sizes;
if (
'full' !== $size
&& strstr( $logo, WP_CONTENT_URL )
&& ( isset( $_wp_additional_image_sizes[ $size ] ) || in_array( $size, [ 'thumbnail', 'medium', 'large' ], true ) )
) {
if ( in_array( $size, [ 'thumbnail', 'medium', 'large' ], true ) ) {
$img_width = get_option( $size . '_size_w' );
$img_height = get_option( $size . '_size_h' );
$img_crop = get_option( $size . '_size_crop' );
} else {
$img_width = $_wp_additional_image_sizes[ $size ]['width'];
$img_height = $_wp_additional_image_sizes[ $size ]['height'];
$img_crop = $_wp_additional_image_sizes[ $size ]['crop'];
}
$upload_dir = wp_upload_dir();
$logo_path = str_replace( [ $upload_dir['baseurl'], $upload_dir['url'], WP_CONTENT_URL ], [ $upload_dir['basedir'], $upload_dir['path'], WP_CONTENT_DIR ], $logo );
$file_type = wp_check_filetype( $logo_path );
$dims = $img_width . 'x' . $img_height;
$resized_logo_path = str_replace( '.' . $file_type['ext'], '-' . $dims . '.' . $file_type['ext'], $logo_path );
if ( strstr( $resized_logo_path, 'http:' ) || strstr( $resized_logo_path, 'https:' ) ) {
return $logo;
}
if ( ! file_exists( $resized_logo_path ) ) {
ob_start();
$image = wp_get_image_editor( $logo_path );
if ( ! is_wp_error( $image ) ) {
$resize = $image->resize( $img_width, $img_height, $img_crop );
if ( ! is_wp_error( $resize ) ) {
$save = $image->save( $resized_logo_path );
if ( ! is_wp_error( $save ) ) {
$logo = dirname( $logo ) . '/' . wp_basename( $resized_logo_path );
}
}
}
ob_get_clean();
} else {
$logo = dirname( $logo ) . '/' . wp_basename( $resized_logo_path );
}
}
return $logo;
}
/**
* Displays the company video.
*
* @since 1.14.0
* @param int|WP_Post $post
*/
function the_company_video( $post = null ) {
$video_embed = false;
$video = get_the_company_video( $post );
$filetype = wp_check_filetype( $video );
if ( ! empty( $video ) ) {
// FV WordPress Flowplayer Support for advanced video formats.
if ( shortcode_exists( 'flowplayer' ) ) {
$video_embed = '[flowplayer src="' . esc_url( $video ) . '"]';
} elseif ( ! empty( $filetype['ext'] ) ) {
$video_embed = wp_video_shortcode( [ 'src' => $video ] );
} else {
$video_embed = wp_oembed_get( $video );
}
}