Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageIm not sure what I did, but it is working now. I check back if I can figure it out.
Thanks again for the help.
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageHello,
First, I want to thank you for all of your help, I really appreciate it.
Using the code with the function you gave me just displays all the post again. If I used it with the query, I still get the 404 error. I tried some variations myself, but with no luck. I might need to walk away from this one for a few. π
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageThanks a lot for your help, I really appreciate it.
Forum: Fixing WordPress
In reply to: How to remove "forgot your password?" on the login pageForum: Fixing WordPress
In reply to: Limit number of post on archive pageMaybe it has something to do with the structure. So here it is.
-> parent category
–> children category
All of the children are displayed on a certain page. You select the category which then displays all the post within that category. This is where I want to limit the number displayed. Hopefully that gives a better picture.
url for page that displays childern
localhost/?page_id=5
url for category selected
localhost/?cat=4
url for next post link which I get the 404 error
localhost/?cat=4&paged=2
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageWell that one brought back the page nav, but still getting the 404 error.
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageThanks again, but that took the page navigation away and showed all the post instead of the 1. I even removed the reset since the global was in there and still no luck..
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageThat definitely fixed the error message. Thank you, but now I’m getting a 404 when I select the next link. It appears the pagination is not working properly.
Its always something. π
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageForum: Fixing WordPress
In reply to: Limit number of post on archive pageOkay,
I tried changing this
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("posts_per_page=1&paged=".$paged); if (have_posts()) : while (have_posts()) : the_post(); ?>to this
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($paged . "&posts_per_page=1&paged=' .$paged); ?>but now I’m getting an T_endwhile error.
Forum: Fixing WordPress
In reply to: Posting to a Pagelook up the term “get excerpt” that should point you in the right direction. Without knowing exactly what post and where, it is kinda hard for me to tell you that answer.
Good luck.
Forum: Fixing WordPress
In reply to: Limit number of post on archive pageI just tried using this same query on another page and it seems to work fine. Not sure why it will not work on the archive.php file..
here is the error unexpected $end on line 56
Thanks in advance.
Forum: Fixing WordPress
In reply to: custom image for each category pageThank you, that worked perfectly.
Forum: Fixing WordPress
In reply to: Posting to a Pagefirst you have to find the category id. You can do this by hovering of the category within the wordpress admin panel.
Then you will need to place this shortcode on the page that you want to post to display
[catlist id=put your category id here]
Here is some usage notes for the list category post plugin
Forum: Fixing WordPress
In reply to: Posting to a PageA link of what you are doing would be great and the name of the plugin you have would also be useful.