go41

the info you need to know


von Joern
Keine Kommentare

As I think a sitemap.xml is important for any website I got the latest sitemap plugin for bbpress here:http://plugins-dev.bbpress.org/browser/ ... itemap.phpI edited this bbpress_sitemap.php on line 16 to look like this:$sitemap_file = $_SERVER['DOCUMENT_ROOT']."/sitemap.xml";as my bbpress is installed in the root…


von Joern
Keine Kommentare

I didn't find a robots.txt file for bbpress. There are many crawlers looking for this file first so best to have one in your root folder.The content of my current robots.txt file is now:User-agent: Mediapartners-Google*Disallow:User-agent: *Disallow: /bb-admin/Disallow: /bb-cache/Disallow: /bb-includes/Disallow: /bb-plugins/Disallow:…


von Joern
Keine Kommentare

@cat:to get the posts of the current month and current year you find this code in WordPress Codex:Code:<?php $current_month = date('m'); ?><?php $current_year = date('Y'); ?><?php query_posts("cat=22&year=$current_year&monthnum=$current_month&order=ASC"); ?><!-- put your loop here -->With this code and a modified current_year variable…