Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

bird0 on "How to list all links[pages/posts/tags/Category]?"

$
0
0

I want to list every link on my wordpress. link to Pages. link to Posts. link to Tags. link to Categories. To everything... to every existed page on my wordpress
That what i wont:

http://localhost/wordpress-3.8/wordpress/page1/
http://localhost/wordpress-3.8/wordpress/page2/
http://localhost/wordpress-3.8/wordpress/post1/
http://localhost/wordpress-3.8/wordpress/post2/
http://localhost/wordpress-3.8/wordpress/tag1/
http://localhost/wordpress-3.8/wordpress/tag2/
http://localhost/wordpress-3.8/wordpress/category1/
http://localhost/wordpress-3.8/wordpress/category2/

My idia:

<?php
  $pages = get_pages();
  foreach ( $pages as $page ) {
  	$html = get_page_link( $page->ID );
	$html .= "<br/>";
	echo $html;
  }
 ?>

OR some thing similar

<?php
  $ID = get_ALL_IDS();
  foreach ( $IDS as $ID ) {
  	$html = get_permalink($ID);
	$html .= "<br/>";
	echo $html;
  }
 ?>

Little spider


Viewing all articles
Browse latest Browse all 8245

Trending Articles