Can you send my a small work example?
I’ll be very grateful.
Sorry, it’s too hard for me.
There is code:
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
the_title();
the_content();
}
}
How to check another translation empty is?
Is it posible?
I think must be a free way to do this.
For exemple:
…
$post_link = get_post_permalink();
$post_text = file_get_content( $post_link );
if( $post_text…. ){
…
}
is it?
Can I take one translation on page of other translation?