robberto
Forum Replies Created
-
Forum: Plugins
In reply to: Articles plugin – failure to display categories/articlesI’d love this plugin if it would work. Want to try Andy’s solution. But where exactly do I put the code he proposed?
Thanks!
Forum: Fixing WordPress
In reply to: Page permalinks – .html ending?When I go to Options > Permalinks and create custom structure: %postname%.html — why doesn’t that work?
Why do none of my posts of pages end with .html?
What am I missing?
Forum: Fixing WordPress
In reply to: Page permalinks – .html ending?How exactly do I change that?
I tried several times, but each time resulting in some error.
What part of the rewrite.php to I change/delete/overwrite?In my rewrite.php I see this:
function page_rewrite_rules() {
$uris = get_option(‘page_uris’);
$attachment_uris = get_option(‘page_attachment_uris’);$rewrite_rules = array();
$page_structure = $this->get_page_permastruct();
if( is_array( $attachment_uris ) ) {
foreach ($attachment_uris as $uri => $pagename) {
$this->add_rewrite_tag(‘%pagename%’, “($uri)”, ‘attachment=’);
$rewrite_rules = array_merge($rewrite_rules, $this->generate_rewrite_rules($page_structure,EP_PAGES));
}
}
if( is_array( $uris ) ) {
foreach ($uris as $uri => $pagename) {
$this->add_rewrite_tag(‘%pagename%’, “($uri)”, ‘pagename=’);
$rewrite_rules = array_merge($rewrite_rules, $this->generate_rewrite_rules($page_structure, EP_PAGES));
}
}return $rewrite_rules;
}Forum: Plugins
In reply to: accessibility widget: where to download?I found 2 accessibility widgets/plugins:
http://webgrrrl.net/wp-content/uploads/2007/03/accessibilitywidget.zip
http://www.indiana-loans.co.uk/wordpress-plugin-seo-alt-tag-optimzer-font-resizer-tool/Hope this helps!
Forum: Plugins
In reply to: Fold Page List updated for WP 2.1 compatibilityHi Rob,
In your instructions it says: To use, simply replace the code fragment that looks like this
<?php wp_list_pages ($args); ?> with this: <?php wswwpx_fold_page_list ($arglist); ?>Newbie question… I tried several themes, but nowhere I find ($args) in the sidebar.php… only things like: <?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?> or <?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
So what to do?
Robberto