threedays
Forum Replies Created
-
Forum: Plugins
In reply to: Page navigation and structurethat script is simliear to what I am looking for.
The link seems to be broken.
Do you still have it?
Forum: Fixing WordPress
In reply to: Amazon Store inside BlogI want to be able to something similar to CG-Amazon.
But it would be great if I could associate posts and categories from my blog to the items in my Amazon DB.Do you know of anything which could achieve that?
Forum: Fixing WordPress
In reply to: Character replacements in admin systemThank you, that has fixed the issue with the /
The issue left now is on the author page. The about user box will not accept < > characters.
Well more to the point it does accept them and prints them as is rather than allowing th input of HTML tags.
ie to place a link in the users profile.
Help to fix this would also be appreciated.
Forum: Themes and Templates
In reply to: Only latest post on Category PageCan anybody help with why this 404 error is appearing?
Forum: Themes and Templates
In reply to: Only latest post on Category PageAh yes, sorry I was being stupid….
This code actually results in what I had before. Displaying 1 post, correctly, but linking to https://www.threedays.co.uk/category/bible-study/page/2/ which returns a 404 error
Forum: Themes and Templates
In reply to: Only latest post on Category PageI guess I’m being stupid:
Ive got.
<? query_posts(‘showposts=1’);?>
<? $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(“paged=$paged&cat=1”); ?><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
etc….
<?php posts_nav_link(‘|’,’pre’,’next’); ?>
<?php endif; ?>
<?php endwhile; ?>And it has just made the content on the post not appear at all…
Forum: Themes and Templates
In reply to: Only latest post on Category PageThanks..
is it also possible for it to work out the permy link of the next | prev post Chronologically in that category?
I tried using posts_nav_link() but it seems to link to a page which has no content and no template associated with it.
Any thoughts?
Thanks again
Forum: Themes and Templates
In reply to: Page for posts of 1 categoryNot to worry
This does basically what I want to dohttps://codex.www.ads-software.com/Category_Templates
Thanks