WQP 360 Posted May 25, 2014 Report Share Posted May 25, 2014 Здравствуйте, сегодня открыл новый проект на WP, но знаний недостаточно в этой CMS. Подскажите хороший онлайн справочник, а также как вывести количество подстаниц из родительской? Link to post Share on other sites
Macdec 139 Posted May 25, 2014 Report Share Posted May 25, 2014 http://codex.wordpress.org/ WQP 1 Link to post Share on other sites
WQP 360 Posted May 25, 2014 Author Report Share Posted May 25, 2014 @Macdec, спасибо. Сразу нашел ответ на свой вопрос. Куму нужно: <?php $my_wp_query = new WP_Query(); $all_wp_pages = $my_wp_query->query(array('post_type' => 'page')); $actor_t = get_page_by_title('Актёры сериала'); $actor = get_page_children( $actor_t->ID, $all_wp_pages ); echo count($actor); ?> Link to post Share on other sites
Macdec 139 Posted May 25, 2014 Report Share Posted May 25, 2014 @Macdec, спасибо. Сразу нашел ответ на свой вопрос. Куму нужно: <?php $my_wp_query = new WP_Query(); $all_wp_pages = $my_wp_query->query(array('post_type' => 'page')); $actor_t = get_page_by_title('Актёры сериала'); $actor = get_page_children( $actor_t->ID, $all_wp_pages ); echo count($actor); ?> Не за что) Link to post Share on other sites
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now