Menu
Např.horní menu
$defaults = array(
'theme_location' => '',
'menu' => '',
'container' => 'div',
'container_class' => 'menu-{menu slug}-container',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $defaults );
Přehled všech stránek
wp_list_pages() ;
Volitelné odkazy
echo "<ul class='odkazy'>";
wp_list_bookmarks();
echo "</ul>";
Stránky
viz. content.php
the_title();
the_permalink();
Vložení konkrétní stránky na volitelnou stránku
$args=array(
'post_type'=>'page',
'p' => $pageID
);
query_posts($args);
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
//echo "<h2>"; the_title(); echo "</h2>";
the_content();
endwhile;
Plugins a obecně shortcode
<?php echo do_shortcode('[slideshow id=1 w=544 h=300]'); ?>