คำถามติดแท็ก get-children

3
ตรวจสอบว่าหมวดหมู่ปัจจุบันมีลูกหรือไม่
ฉันต้องบอกว่าหน้าจัดเก็บภาษีอนุกรมวิธานที่กำหนดเองปัจจุบันที่ฉันกำลังดูมีหมวดหมู่ลูกหรือไม่ ฉันมีสถานการณ์ที่มีหมวดหมู่ที่กำหนดเองจำนวนมากที่มีเด็ก ๆ และไซต์มีไว้เพื่อแสดงโพสต์เมื่อสิ้นสุดบรรทัดเท่านั้น มิฉะนั้นจะแสดงลิงก์ไปยังหมวดหมู่ที่เป็นขั้นตอนถัดไป ฉันพบข้อมูลโค้ดนี้แล้ว แต่ดูเหมือนว่าจะใช้งานไม่ได้กับ taxonomies แบบกำหนดเอง function category_has_children() { global $wpdb; $term = get_queried_object(); $category_children_check = $wpdb->get_results(" SELECT * FROM wp_term_taxonomy WHERE parent = '$term->term_id' "); if ($category_children_check) { return true; } else { return false; } } <?php if (!category_has_children()) { //use whatever loop or template …

5
รับภาพแรกจากเนื้อหาโพสต์ (เช่นภาพที่ลิงก์)
ฉันกำลังใช้รหัสนี้โดยตรงจากCodex function echo_first_image ($postID) { $args = array( 'numberposts' => 1, 'order'=> 'ASC', 'post_mime_type' => 'image', 'post_parent' => $postID, 'post_status' => null, 'post_type' => 'attachment' ); $attachments = get_children( $args ); //print_r($attachments); if ($attachments) { foreach($attachments as $attachment) { $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.