如何将组合数组参数提取到wordpress中的另一个页面

时间:2015-05-04 10:45:52

标签: wordpress

我在使用wordpress GT3主题中的类型视频参数获取投资组合帖子时遇到问题。视频参数仅显示在投资组合页面中。但我想在列表组合帖子页面上看视频参数。

列出投资组合帖子页面 - http://www.kemovement.com/ 投资组合页面 - http://www.kemovement.com/portfolio/i-love-you/

我如何在列表页面中获得视频参数.. ???

1 个答案:

答案 0 :(得分:0)

我想你可以试试这段代码:

<?php
// Set up the objects needed
$my_wp_query = new WP_Query();
$all_wp_pages = $my_wp_query->query(array('post_type' => 'page'));
// Get the page as an Object
$portfolio =  get_page_by_title('Portfolio');
// Filter through all pages and find Portfolio's children
$portfolio_children = get_page_children( $portfolio->ID, $all_wp_pages );
// echo what we get back from WP to the browser
echo '<pre>' . print_r( $portfolio_children, true ) . '</pre>';
?>