I am posting Hadiths in my website and i post it in 3 translations: Arabic, Urdu, English. In Hadith's page, where Hadiths are showing one by one, It's showing Arabic excerpt text.
See my web, Here is my Website link: IF Islam
I want here to show English Hadith excerpt text instead of Arabic and Urdu.
Which PHP code will do this?
Please help
Here is the content.php code:
<div class="col-lg-8 col-md-6">
<div class="card-body">
<a href="<?php the_permalink(); ?>" class="">
<h2 class="single_post_title h3-responsive text-primary mb-1"><?php the_title(); ?></h2>
</a>
<div class="blog_meta">
<time class="blog_meta_posted_on grey-text"><?php the_time('F j, Y g:i a'); ?></time>
<a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>" class="blog_meta_author grey-text"><?php the_author(); ?></a>
<a href="<?php the_permalink(); ?>#responses" class="blog_meta_count_comments grey-text"><?php echo get_comments_number(); ?> Comments</a>
<label class="blog_meta_tags_list">
<?php echo get_the_tag_list( '', ', ', '' ); ?>
</label>
</div>
<div class="blog_excerpt_content black-text m-0 mt-2">
<?php the_excerpt(); ?>
</div>
<a href="<?php the_permalink(); ?>" class="btn btn-primary">Read More</a>
</div>
</div>