Uname:Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64

Base Dir : /home/nobi37te/public_html

User : nobi37te


403WebShell
403Webshell
Server IP : 104.21.25.182  /  Your IP : 216.73.216.140
Web Server : Apache
System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User : nobi37te ( 1003)
PHP Version : 8.2.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/template-parts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/template-parts/content-job.php
<?php
/**
 * Template part for displaying job content
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package BuddyBoss_Theme
 */
?>

<?php 
global $post;
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

		<div class="entry-content-wrap">
    
			<header class="entry-header">
				<?php
				if ( is_singular() && ! is_related_posts() ) :
					the_title( '<h1 class="entry-title">', '</h1>' );
				else :
                    $prefix = "";
                    if( has_post_format( 'link' ) ){
                        $prefix = __( '[Link]', 'buddyboss-theme' );
                        $prefix .= " ";//whitespace
                    }
					the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $prefix, '</a></h2>' );
				endif;
				?>
                
                <?php if( has_post_format( 'link' ) && function_exists( 'buddyboss_theme_get_first_url_content' ) && ( $first_url = buddyboss_theme_get_first_url_content( $post->post_content ) ) != "" ):?>
                <p class="post-main-link"><?php echo $first_url;?></p>
                <?php endif; ?>
			</header><!-- .entry-header -->
            
            <?php do_action( 'single_job_listing_meta_before' ); ?>
            
            <div class="job-listing-meta-wrap">
                <ul class="job-listing-meta meta">
                	<?php do_action( 'single_job_listing_meta_start' ); ?>
                
                	<?php if ( get_option( 'job_manager_enable_types' ) ) { ?>
                		<?php $types = wpjm_get_the_job_types(); ?>
                		<?php if ( ! empty( $types ) ) : foreach ( $types as $type ) : ?>
                
                			<li class="job-type <?php echo esc_attr( sanitize_title( $type->slug ) ); ?>"><?php echo esc_html( $type->name ); ?></li>
                
                		<?php endforeach; endif; ?>
                	<?php } ?>
                
                	<li class="location"><?php the_job_location(); ?></li>
                
                	<li class="date-posted"><?php the_job_publish_date(); ?></li>

					<?php
						$job_salary = the_job_salary('', '', false);
						if ( ! empty( $job_salary ) ) : ?>
							<li class="salary"><?php echo esc_html( $job_salary ); ?> </li>
						<?php
						endif;
					?>
                
                	<?php if ( is_position_filled() ) : ?>
                		<li class="position-filled"><?php _e( 'This position has been filled', 'buddyboss-theme' ); ?></li>
                	<?php elseif ( ! candidates_can_apply() && 'preview' !== $post->post_status ) : ?>
                		<li class="listing-expired"><?php _e( 'Applications have closed', 'buddyboss-theme' ); ?></li>
                	<?php endif; ?>
                
                	<?php do_action( 'single_job_listing_meta_end' ); ?>
                </ul>
            </div>
            
            <div class="entry-content-job">
            
                <div class="entry-primary">

        			<?php if ( !is_singular() || is_related_posts() ) { ?>
        				<div class="entry-content">
        					<?php the_excerpt(); ?>
        				</div>
        			<?php } ?>
        
        			
                
        			<div class="entry-content">
                        <?php the_company_video(); ?>
        				<?php
        				if ( is_singular() && ! is_related_posts() ) {
        					the_content( sprintf(
        					wp_kses(
        					/* translators: %s: Name of current post. Only visible to screen readers */
        					__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'buddyboss-theme' ), array(
        						'span' => array(
        							'class' => array(),
        						),
        					)
        					), get_the_title()
        					) );
        				}
        				?>
        			</div><!-- .entry-content -->
                    
                </div>
                <div class="entry-secondary">
                    <div class="single-job-sidebar">
                        <?php if ( is_single() && ! is_related_posts() ) { ?>
            				<?php if ( has_post_thumbnail() ) { ?>
            					<div class="job-media job-img">
  						            <?php the_post_thumbnail( 'medium' ); ?>
                                    <?php //the_company_logo(); ?>
            					</div>
            				<?php } ?>
            			<?php } ?>
                        <div class="company-bar">
                            <?php if ( candidates_can_apply() ) : ?>
                    			<?php get_job_manager_template( 'job-application.php' ); ?>
                    		<?php endif; ?>
                            
                            <h3><?php echo __( 'Contact us', 'buddyboss-theme' ); ?></h3>
                            <div class="name-meta"><?php the_company_name( '<strong>', '</strong>' ); ?></div>
                    		<?php if ( $website = get_the_company_website() ) : ?>
                                <?php
                                $url = preg_replace('#^https?://#', '', rtrim($website,'/'));
                                ?>
                    			<div class="name-meta"><a class="website" href="<?php echo esc_url( $website ); ?>" target="_blank" rel="nofollow"><?php echo $url; ?></a></div>
                    		<?php endif; ?>
                    		<div class="name-meta"><?php the_company_twitter(); ?></div>
                        	<?php the_company_tagline( '<p class="tagline">', '</p>' ); ?>
                            <div class="job-listing-meta-after-wrap">
                                <?php do_action( 'single_job_listing_meta_after' ); ?>
                            </div>
                        </div>
                    </div>
                </div>
                
            </div>
		</div>

</article><!-- #post-<?php the_ID(); ?> -->

<?php
get_template_part( 'template-parts/related-jobs' );

Youez - 2016 - github.com/yon3zu
LinuXploit