How to retrieve a language value manually?
-
Hi, I have a process that will list a certain posts based on a category. My problem is I don’t have any idea how can I get the language value of a certain post. I have 2 language (ENGLISH/JAPANESE).
Here’s my simple code:
<ul class="list-unstyled" id="category-services-rows"> <?php $category_ids = get_terms('title_li='); ?> <?php $args = array( 'orderby' => 'slug', 'parent' => 24, 'hide_empty' => 0, 'lang' => 'ja' ); $categories = get_categories($args); foreach($categories as $subcat) { echo "<li>"; echo " <h4><a href=''><span class='fa fa-play'></span> " . $subcat->name . "</a></h4>"; echo " <div class='subcat_info'>"; $catPost = get_posts('cat=' . $subcat->term_id . '&posts_per_page=-1'); if(count($catPost) > 0) { foreach($catPost as $subcat) { echo "<p>" . $subcat->post_content . "</p>"; } } else { echo "<div class='text-center subcat_info'>"; echo "<p> There are no post under this category! </p>"; echo "</div>"; } echo " </div>"; echo "</li>"; } ?> </ul>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to retrieve a language value manually?’ is closed to new replies.