neilogic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories with description loopI found the solution guys here’s this link if anyone wants it too.
Thanks for the reply! Cheers
Forum: Themes and Templates
In reply to: Hard Code Vs WordPressI would say wordpress is one of the sweetest and the easiest of all Blogging scripts out there in the wild and that I mean right from the word GO when you start installing it. Now about the designing , I have been using Joomla & many other but personally I would say WordPress was and will always be the easiest of all of them to design too. If you are thinking of giving a bit of time to wordpress I feel with the online help and the plugin’s that wordpress has already it’s very easy for someone to design. I have been using wordpress for 2 years now and I still don’t even know a single command of Mysql and that because of the vast support and the plugins that are available . I would definetly say give wordpress a try and you would never leave it. Cheers ! and best of luck.
Forum: Fixing WordPress
In reply to: How to change archive.php title with the_tags search resultHi there I don’t know if your problem got solved by now or not . But I use this on my archive.php page and when someone clicks on a tag it shows “Posts Tagged with #tagname” . Here’s the code below I hope this helps you out. If not just let me know I will try n show you a working example.
<?php if ( is_404() || is_category() || is_tag() || is_day() || is_month() || is_year() || is_search() || is_paged() ) { ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2 class="pagetitle">Posts Tagged with ‘<?php single_tag_title(); ?>’</h2> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2 class="pagetitle">Author Archive</h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2 class="pagetitle">Blog Archives</h2> <?php } ?> <?php }?>