Answer the question
In order to leave comments, you need to log in
How to pass command from guest OS to host?
There is a host OS of wines 10, and guests of wines 7 and wines 10. The essence of this is that the guest of wines 10 works, a certain moment comes and it is necessary that the script / program work on the host. How to force the host to run the desired script or program from the wine 10 guest?
Answer the question
In order to leave comments, you need to log in
if( !empty( $article ) && !empty( $post = get_post( $article ) ) ) {
$articles[] = $post;
}
And so?
if( !empty( $article ) && !empty( ($post = get_post( $article )) ) ) {
$articles[] = $post;
}
$post = get_post($article);
if(!empty($article ) && !empty($post) ) {
$articles[] = $post;
}
Yes, there are no syntax errors in the code. The fact that it is bad - I agree, but the syntax is correct.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question