|
|
|
สอบถามการใส่ตัวแปรในฟังก์ชั่นดึงโพสต์มาแสดงของ wordpress [WP_Query] |
|
|
|
|
|
|
|
การดึง post ล่าสุดของ category มาแสดง
Code (PHP)
$cat = of_get_option( 'select_categories', '0' );
$args = array(
'cat' => $cat,
'posts_per_page' => $post_numbers,
'post_status' => 'publish',
'post_type' => 'post',
'ignore_sticky_posts' => 1
);
$recentPosts = new WP_Query($args);
if ( $recentPosts->have_posts() ) {
// ...
* of_get_option() ไม่ใช่ core function
|
|
|
|
|
Date :
2020-06-03 16:58:23 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|