Hi
You have to change the php file, edit “/wp-content/themes/oldcar/includes/theme-functions.php” file, find the following code
/*Post meta info*/
if( !function_exists( 'van_posted_on') ){
function van_posted_on(){
?>
<span class="blog-article-info"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) );?>"><?php printf(__('By %s','OldCar'),get_the_author());?></a> / <?php printf( __( 'in %2$s', 'OldCar' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> / <?php the_time(get_option('date_format'));?></span>
<?php
}
}
Replace it as below
/*Post meta info*/
if( !function_exists( 'van_posted_on') ){
function van_posted_on(){
?>
<span class="blog-article-info"><a href="YOUR PROFILE PAGE"><?php printf(__('By %s','OldCar'),get_the_author());?></a> / <?php printf( __( 'in %2$s', 'OldCar' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> / <?php the_time(get_option('date_format'));?></span>
<?php
}
}
Please use your actual profile page to instead of “YOUR PROFILE PAGE” above.
Thanks