Hugo Parrales
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Job ListingExcelent! Thanks for all help Mike!
in the future maybe you can create a tutorial to integrate this plugin with the form of gravity , my it has worked fine.
Forum: Plugins
In reply to: [WP Job Manager] Job ListingShow a list
Forum: Plugins
In reply to: [WP Job Manager] Job ListingThank You its Work.
Gravity form has been coupled brilliantly with wp job manager
mike one more question, if I want to create a page template that shows specific jobs , could use the function
get post( )
or function you recommend
Forum: Plugins
In reply to: [WP Job Manager] get_children of JobThanks
Forum: Plugins
In reply to: [WP Job Manager] get_children of JobWhat do you think of this code;
<?php wp_reset_query(); ?>
<?php
global $post;
$loop = new WP_Query(array(‘post_type’ => ‘job_application’, ‘post_status’ => ‘new’));
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<h2>” id=”post<?php the_ID(); ?>”>
<?php the_title(); ?></h2>
<?php the_content();?>
<?php endforeach; ?>Forum: Plugins
In reply to: [WP Job Manager] get_children of JobWhat am I doing wrong ?
i need create a loop ??Forum: Plugins
In reply to: [WP Job Manager] get_children of Jobi use
<?php
$postID = get_the_ID();
$args = array(
‘post_parent’ => $postID,
‘post_type’ => ‘job_application’,
‘post_status’ => ‘Interviewed’
);
$ch = get_children( $args);
echo $ch;
?>but show “array”
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingThanks for all help bryceadams and Mike.
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingBryceadams Hi thanks for your help , I ask you a question like I can do to put a line of php in Option 1
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingAnother question Mike, how can i add a costum field with a dorpdown ??
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingNothing, i solved
Forum: Fixing WordPress
In reply to: the_author() not workingNo problem continues, I’m in a post created by ” hugo ” and
<?php the_author(); ?> shows me that this post is created by adminForum: Plugins
In reply to: [WP Job Manager] Post parentWOW!!!!!! You are a Genuis!!, Thats Work!
Thanks you!!!
Forum: Plugins
In reply to: [WP Job Manager] Post parentThis:
<div id=”salario”><h5>Salario:
<?php echo get_post_meta( $post->post_parent, ‘_salary’, true ); ?></h5></div>should show ” salary ” published in the job
Forum: Plugins
In reply to: [WP Job Manager] Post parentwhat I want is this, I have a page where applications do a specific job and the portion of code that controls this is this is :
<section class=”job-application-content”>
<?php job_application_meta( $application ); ?>
<div id=”info”><h5>Estos son los campos del empleo al que estas optando</h5></div>
<div id=”salario”><h5>Salario:
<?php echo get_post_meta( $post->post_parent, ‘_salary’, true ); ?></h5></div>
</section>