$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>translation - Qtranslate-X get raw post title value|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

translation - Qtranslate-X get raw post title value

matteradmin9PV0评论

How can I get a raw value of post title using Qtranslate-X plugin?
I have 2 active languages - [:et] and [:ru]

$posts = get_posts($args);
if($posts){
    foreach($posts as $post){

       $title1 = $post->post_title;
       $title2 = get_post_field( 'post_title', $post->ID, 'raw' );

       echo $title1;
       echo $title2;

    }
}

Variables $title1 and $title2 returns only [:et] versions of a title.
Database value of post_title is:

[:et]Immuniseerimise jätkukursus[:ru]Иммунизация – дополнительный курс[:]

How can I get a raw value of post title using Qtranslate-X plugin?
I have 2 active languages - [:et] and [:ru]

$posts = get_posts($args);
if($posts){
    foreach($posts as $post){

       $title1 = $post->post_title;
       $title2 = get_post_field( 'post_title', $post->ID, 'raw' );

       echo $title1;
       echo $title2;

    }
}

Variables $title1 and $title2 returns only [:et] versions of a title.
Database value of post_title is:

[:et]Immuniseerimise jätkukursus[:ru]Иммунизация – дополнительный курс[:]
Share Improve this question asked Feb 1, 2019 at 18:56 antonanton 1,0811 gold badge10 silver badges14 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

post_title_ml property should be used to get a raw post value, instead of post_title

$title = $post->post_title_ml

To translate raw value translate_text filter can be used

$english_title = apply_filters('translate_text', $title, 'en');

Or qtranxf_use_language() function

$english_title = qtranxf_use_language('en', $title, false, true);
Post a comment

comment list (0)

  1. No comments so far