my friend asked me to improve his site. He needs to add button to job list post but I don't know how, I am using only HTML/CSS, not PHP.
There is a code:
<?php if( $permalink ) : ?>
<a href="<?php echo esc_url($permalink);?>"><?php echo $thumbnail_image_output;?></a>
<?php else:?>
<?php echo $thumbnail_image_output;?>
<?php endif;?>
</div>
</div>
<?php endif;?>
<div class="person_data">
<?php if( $permalink ) : ?>
<h5 class="person_name"><a href="<?php echo esc_url($permalink);?>"><?php the_title();?></a></h5>
<?php else:?>
<h5 class="person_name"><?php the_title();?></h5>
<?php endif;?>
<?php if(! empty( $position )) : ?>
<span class="position"><?php echo apply_filters( "rtframework_team_position", esc_attr( $position ) );?></span>
<?php endif;?>
<?php if(! empty( $short_data )) : ?>
<div class="profile">
<?php echo apply_filters( "the_content", $short_data );?>
</div>
<?php endif;?>
<?php do_action("rtframework_staff_media_links",$post->ID); ?>
</div>
The question is, how to add button with link to the full post above the "the_content"?
I will be very happy if you show me the way.
Sorry for my English and have nice day :-)