wp_list_pages(), first draft
git-svn-id: http://svn.automattic.com/wordpress/trunk@1766 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6372a14f42
commit
3c360863ae
|
@ -314,4 +314,30 @@ function the_meta() {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Pages
|
||||
//
|
||||
|
||||
function wp_list_pages($args = '') {
|
||||
global $wpdb;
|
||||
|
||||
// TODO: Hierarchy.
|
||||
|
||||
parse_str($args, $r);
|
||||
if (!isset($r['sort_column'])) $r['sort_column'] = 'title';
|
||||
if (!isset($r['sort_order'])) $r['sort_order'] = 'asc';
|
||||
|
||||
$pages = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'static' ORDER BY post_" . $r['sort_column'] . " " . $r['sort_order'] = 'asc');
|
||||
|
||||
foreach ($pages as $page) {
|
||||
echo '<li>';
|
||||
|
||||
$title = apply_filters('the_title', $page->post_title);
|
||||
|
||||
echo '<a href="' . get_page_link($page->ID) . '" title="' . htmlspecialchars($title) . '">' . $title . '</a>';
|
||||
echo '</li>';
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue