Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
query_posts(array('showposts' => 20, 'post_parent' => 0, 'post_type' => 'page'));
while ( have_posts() ) : the_post();
//показывает название страницы
the_title();
//показывает текст страницы
the_content();
//показывает краткое описание страницы
the_excerpt();
//id страницы
$id = get_the_ID();
//вся инфа о странице
print_r(get_page($id));
//мета страницы, там дополнительное поле info
print_r(get_post_meta($id, 'info'));
endwhile;
wp_reset_query();
бился недавно с подобной задачей. и именно для pagesМожно ли как-то заставить функцию wp_list_pages выводить картинку и описание из дополнительных (альтернативных) полей?
<?php $custom_fields = get_post_custom();
foreach ( $custom_fields as $key => $value )
<?
$myPages = get_pages( array( 'child_of' => $post->ID) );
$parent = $post->ID;
foreach ($myPages as $myChild)
{