dekap1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Limit To Pages/Posts?it still lets me make posts just fine and i know that the posts/pages are filed in the same database so i dont think thats it…..
Forum: Fixing WordPress
In reply to: Limit To Pages/Posts?posts: 12700
pages:425Forum: Themes and Templates
In reply to: Hide some of template possible?anyone?
Forum: Fixing WordPress
In reply to: Hide a part of your template possible?say that its posts from category X. what i want to do is hide the next/previous link from showing but still have it work for all the other categorys that have posts
Forum: Fixing WordPress
In reply to: Publishing Pages and Server Loadsis there a restriction to how many pages you can make?
Forum: Fixing WordPress
In reply to: Publishing Pages and Server LoadsFollow Up: I have tried to use a backup prior to 6/29/09 and still no luck.
Forum: Fixing WordPress
In reply to: Older/ Newer Entriesfor anyone else having same problems… this fixed it for me
<?php $limit = 6; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=3&paged=$paged' . '&posts_per_page=6' .'showposts=' . $limit . '&paged=' . $paged); $wp_query->is_archive = false; $wp_query->is_home = true; ?>Forum: Fixing WordPress
In reply to: Older/ Newer Entriesi realized if i take out
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=3&paged=$paged"); ?>the older/ newer entry links work fine, but once i try to implement that code, it no longer works. is there another way to query cats?
Forum: Fixing WordPress
In reply to: Older/ Newer Entriesyes i did see the <!– index.php –> and <!– end index.php –> in the view source. sadly still no luck
Forum: Fixing WordPress
In reply to: Older/ Newer Entriesstill does not work, when i click on older entries it still queries the same posts as page 1
Forum: Plugins
In reply to: Listing Authorsi saw that but it doesnt show you how to specify a author or anything of the sort