Here is the taxonomy-job_listing_category.php
<?php
/**
* post type archive template.
*
*/
//* Force full width content layout
add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );
//* Remove the breadcrumb navigation
// remove_action( ‘genesis_before_loop’, ‘genesis_do_breadcrumbs’ );
//* Remove the post info function
remove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );
//* Remove the post content
add_action( ‘genesis_entry_content’, ‘genesis_do_post_content’ );
//* Remove the post image
remove_action( ‘genesis_entry_content’, ‘genesis_do_post_image’, 8 );
//* Add featured image below post title with
add_action( ‘genesis_entry_header’, ‘sk_portfolio_grid’ );
function sk_portfolio_grid() {
<li <?php job_listing_class(); ?> data-longitude=”<?php echo esc_attr( $post->geolocation_lat ); ?>” data-latitude=”<?php echo esc_attr( $post->geolocation_long ); ?>”>
“>
<div class=”logo “>
<?php the_company_logo(); ?></div>
<div class=”position “>
<h3><?php the_title(); ?></h3>
</div>
<div class=”company”>
<?php the_company_name( ‘‘, ‘ ‘ ); ?>
</div>
<ul class=”meta “>
<?php do_action( ‘job_listing_meta_start’ ); ?>
<li class=”job-expire”><?php echo ( $expires = get_post_meta( $post->ID, ‘_job_expires’, true ) ) ? date_i18n( get_option( ‘date_format’ ), strtotime( $expires ) ) : ‘–’; ?>
<?php do_action( ‘job_listing_meta_end’ ); ?>
}
//* Remove the post meta function
remove_action( ‘genesis_entry_footer’, ‘genesis_post_meta’ );
//* Modify the length of post excerpts
add_filter( ‘excerpt_length’, ‘genesis_post_excerpt_length’ );
function genesis_post_excerpt_length( $length ) {
return 50; // pull first 50 words
}
add_filter( ‘get_the_content_more_link’, ‘child_read_more_link’ );
function child_read_more_link() { return ”; }
genesis();
I can not see any changes. what am I doing wrong?