0
我需要在WordPress創建一個自定義職位類型有以下要求:WordPress的自定義文章類型,有兩個圖像畫廊
- 標題
- 字幕
- 簡要說明
- 長描述
- 外部圖像畫廊
- 內部圖像庫
我無法爲此創建兩個單獨的圖像庫。
有什麼建議嗎?
我需要在WordPress創建一個自定義職位類型有以下要求:WordPress的自定義文章類型,有兩個圖像畫廊
我無法爲此創建兩個單獨的圖像庫。
有什麼建議嗎?
https://gist.github.com/897503
試試看..:d
這是相當真棒!有關信息將如何保存的任何提示 - 以及如何在我的模板中閱讀信息? – Tom
<?php query_posts(「post_type = my&showposts = -1」); (have_posts()):while(have_posts()):the_post(); \t如果($附件= get_children(陣列( \t \t 'post_type'=> '附着', \t \t 'post_mime_type'=> '圖像', \t \t 'numberposts'=> -1, \t \t 'post_parent'=> $ post-> ID \t))); \t \t \t 的foreach($附件,附件$){ \t \t \t 回波\t wp_get_attachment_image($ attachment-> ID, '完全',TRUE,FALSE, ''); \t} \t \t endwhile; \t endif; ?> –