add_filter( 'the_content', '_my_limit_content' );
function _my_limit_content( $content ) {
global $post;
$is_external = get_post_meta( $post->ID, '_goft_jobs_is_external', true );
if ( $is_external ) {
// REPLACE '250' WITH YOUR MAX LENGTH
$max_length = 250;
if ( strlen( $content ) > $max_length ) {
$content = substr( $content, 0, $max_length ) . '...';
}
}
return $content;
}
There are currently 1 users browsing this thread. (0 members and 1 guests)