This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$link = 'Location: '+ esc_url( $apply->url ); ?> | |
<p><?php _e( 'To apply for this job please visit the following URL:', 'wp-job-manager' ); ?> <a href="<?php echo esc_url( $apply->url ); ?>" target="_blank" rel="nofollow"><?php echo esc_html( $apply->url ); ?> →</a></p> | |
<?php | |
header($link); | |
exit; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The Template for displaying a single listing gallery. | |
* | |
* @package Listify | |
*/ | |
get_header(); ?> | |
<?php while ( have_posts() ) : the_post(); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying a list of gallery items for a job listing. | |
* | |
* Must pass an array of attachment IDs and a limit to show [$gallery, $limit] | |
* | |
* @package Listify | |
*/ | |
global $listify_job_manager, $job_preview; | |
if ( empty( $gallery ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (min-width: 768px) { | |
body.fixed-map .container { | |
padding-left: 15px; | |
padding-right: 15px; | |
} | |
} | |
body.fixed-map .container { | |
padding-left: 25px; | |
padding-right: 25px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Handles taxonomies in admin | |
* | |
* @since 1.4.0 | |
* | |
* @package Listify | |
* @category Admin | |
*/ | |
class Listify_WP_Job_Manager_Taxonomies { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Listable Child functions and definitions | |
* | |
* Bellow you will find several ways to tackle the enqueue of static resources/files | |
* It depends on the amount of customization you want to do | |
* If you either wish to simply overwrite/add some CSS rules or JS code | |
* Or if you want to replace certain files from the parent with your own (like style.css or main.js) | |
* | |
* @package ListableChild |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#jmfe_widget-2 > h1:before { /* Replace the ID (jmfe_widget-2) with the widget ID from Step 1 */ | |
content: '\f35b'; /* replace the content here with the icon you would like to use.*/ | |
display: inline-block; | |
font-family: Ionicons; | |
speak: none; | |
font-style: normal; | |
font-weight: 400; | |
font-variant: normal; | |
text-transform: none; | |
text-rendering: auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_information_to_listing_footer() { | |
global $post; | |
echo '<h2>hello!</h2>'; | |
} | |
add_action( 'listify_content_job_listing_footer', 'add_information_to_listing_footer', 25 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* More options available via background CSS properties: http://www.w3schools.com/css/css_background.asp */ | |
body.home.custom-background { | |
background-image: url('http://yousite.com/homepagebackground.jpg'); | |
background-repeat: repeat; | |
background-position: top left; | |
background-attachment: scroll; | |
} |