nicktoye
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Critique PleaseWell thanks, its good to hear positive feedback.
Forum: Fixing WordPress
In reply to: Articles Listedok, but at the moment when I click on a category or month, it goes to this:
https://www.nicktoye.co.uk/2005/12/
That is for december obviously, but on this page it shows the most recent article in that month.
I’m sorry but i’m really confused.
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div><h2>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
<?php the_title(); ?>
</h2></div>
<!– end of article title –><div><?php the_content(); ?></div>
<div>
<div style=”clear:both”></div>
<span class=”date”><?php the_time(‘jS F Y’); ?></span>
| <span class=”viewComment”>
<?php comments_popup_link(); ?>
</span> | <span class=”category”>
<?php the_category(‘,’); ?>
</span></div> <!– end of updatedBox –>
<?php wp_link_pages(); ?>
<?php include(ABSPATH . ‘wp-comments.php’); ?>
<?php endforeach; else: ?><?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
Forum: Fixing WordPress
In reply to: CategoriesHi what I wanted to I think, and I am sorry for the confusion, is to be able to have a list of all the articles in that month. Like I have for the recent articles list, I want to be able to click say December and every article written in December will be in a list form, which I can then link to view the article.
Forum: Everything else WordPress
In reply to: SymphonyAbsolutely right, but we must all be striving for utopia in one form or another, and a tool that allows us more control over a website. I mean how long before a blog just becomes more than a blog, and someone’s website is more of a magazine, which calls for the need for a more sophisticated publishing tool.
These kind of applications can only mean good things for tools like WordPress who will evolve accordingly.
Forum: Everything else WordPress
In reply to: SymphonyWell I have a feeling it is going to be a more integrated publishing system, plus if it allows me to do stuff without having to trawl through php code then i’m all for it. That in my opinion is the only problem with WordPress, the fact that I need to hack and use plugins just to be able to manage the content in my whole site.
Granted it is only a blogging software, but for me it is just short of being what I want.
Forum: Fixing WordPress
In reply to: Write Pageok, thanks for your help, appreciate it
Forum: Fixing WordPress
In reply to: Write PageI thought I was being precise.
One website, different sections, articles on each section.
If wordpress can’t do it then i’ll have to look at developing a custom one.
Forum: Fixing WordPress
In reply to: Write PageSorry, I’m designing a website that is split into different sections. Each section will have articles on it, I want to be able to administer these articles on each section.
Forum: Fixing WordPress
In reply to: Write PageIS there any help on this, I mean I presume I am going to have to put a tag on the relevant page,
Forum: Fixing WordPress
In reply to: Active LinkAnyone? This must be a topical question, i searched and couldn’t find a good answer.
Forum: Fixing WordPress
In reply to: CategoriesNo what I want is it to display all the articles in that category/month, but only the title and an excert.
Forum: Fixing WordPress
In reply to: Full ArticleIt was a plugin, sorry guys
Forum: Fixing WordPress
In reply to: Full Articlenope, still only showing part of the article
Forum: Fixing WordPress
In reply to: Full ArticleThanks for that, it didn’t solve my problem though, but thanks anyway
Forum: Fixing WordPress
In reply to: RSS FeedI don’t seem to have a feed directory,
This is my .htaccess file
RewriteEngine On
RewriteBase /
RewriteRule ^category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^category/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^([0-9]{4})/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^([0-9]{4})/?([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^([0-9]{4})/?([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wordpress/wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1&withcomments=1 [QSA]