显示英文字符而不是阿拉伯语-WordPress

时间:2019-07-30 16:29:27

标签: php wordpress wordpress-theming custom-wordpress-pages


我在网站上发布了圣训,并以3种译文发布了它:阿拉伯语,乌尔都语,英语。在圣训的页面上,圣训一一显示​​,这是阿拉伯文摘录文本。
查看我的网站,这是我的网站链接:IF Islam

查看此屏幕截图: enter image description here

我想在这里显示英文的圣训摘录文本,而不是阿拉伯语和乌尔都语。
哪个PHP代码将执行此操作?
请帮助

这是 content.php 代码:

<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>

2 个答案:

答案 0 :(得分:0)

我认为我们需要更多信息才能正确回答您的问题。对于初学者来说,您能否向我们展示用于显示摘录的代码。根据您的问题,我只能想象您在CMS摘录中按字面意思输入的阿拉伯文本。

答案 1 :(得分:0)

尝试更换

<?php the_excerpt(); ?>

使用

<?php
$position = strpos(get_the_content(), 'Hadith in English Translation');
$excerpt = strip_tags(substr(get_the_content(), $position));
echo $excerpt;
?>

我认为get_the_content()以HTML返回帖子的全部内容。我们使用函数strpossubstr$excerpt到帖子内容的末尾构造了一个新的'Hadith in English Translation'。我们还使用strip_tags从所有HTML标记中摘录。

当然,您只需要对Hadith类别使用代码(在您添加的“ category-hadith.php”内部?),因为您只需要在那里进行修改。

检查它是否正常工作,并注意该解决方案假定帖子内容始终具有字符串'Hadith in English Translation',并且英语翻译在其他两个之后排在最后位置。