aife
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Publish ProblemSame refreh problem with Firefox appears in Konqueror.
Forum: Fixing WordPress
In reply to: Creating a new argument in wp_get_archivesi need it too…
Forum: Plugins
In reply to: Displaying posts in pagesYou end not having posts in a page per se, but still can make a pseudo-page with posts.
Forum: Plugins
In reply to: Displaying posts in pagesWhat I have achieved is this:
Copy the index.php to foo.php (for example) and then switching off the themes flag to false.<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, false);
require(‘./wp-blog-header.php’);
?>Next you add the template you would like to use.
From here you can call all the function available to the index template.
The other pages (404.php and the like) will be from the themes but you will have a diferent take on the loop with posts.Forum: Plugins
In reply to: Displaying posts in pagesNO NO NO!!! He is just asking how do you put in the loop posts (wich are time dependent) inside a template page..
From what I have gathered it is not possible. The loop will get the post as the page content.
For example, I would like to create many a diferent view to index.php to my posts wich exists at same time as index.php… Or to acess the post list from a page…
I would like someone to really clarify me on this situation…