Hi tom, I’ve been going through some of the past support board queires on this topic and so far, can only get the snippet that removes the date link to work.
add_filter( 'wpsp_date_output', 'tu_wpsp_remove_date_link' );
function tu_wpsp_remove_date_link() {
$time_string = '<time class="wp-show-posts-entry-date published" datetime="%1$s" itemprop="datePublished">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string .= '<time class="wp-show-posts-updated" datetime="%3$s" itemprop="dateModified">%4$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( 'c' ) ),
esc_html( get_the_modified_date() )
);
printf(
'<span class="wp-show-posts-posted-on wp-show-posts-meta">%1$s</span>',
$time_string
);
}
But I am running into a wall on removing the category link. Suggestions?
Here’s the active work site: http://akustiksstage.wpengine.com/news/