タグ付けされた質問 「get-children」

3
現在のカテゴリに子があるかどうかを確認する
表示している現在のカスタム分類アーカイブページに子カテゴリがあるかどうかを確認する必要があります。子供がいるカスタムカテゴリがたくさんあり、サイトは行の最後に投稿を表示するだけの状況です。それ以外の場合は、次のステップであるカテゴリへのリンクが表示されます。このスニペットは見つかりましたが、カスタム分類では機能しないようです。 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 part here to show the posts at the …

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.