bobdeo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalinks=Forbidden ErrorHi,
I’ve the same problem… No change, only post and today my permalinks crash :
Forbidden : You don’t have permission to access…So I add your line in my htaccess (Options -Indexes IncludesNOEXEC FollowSymLinks) and an other for UTW… but that’s strange…
What means “Options -Indexes IncludesNOEXEC FollowSymLinks” ?
Thanks in advance
Forum: Plugins
In reply to: Custom select queryok… so I try with this and it works… but it don’t think it’s very clean…
<?php
$pageposts = $wpdb->get_results("
SELECT wp_posts.* FROM wp_posts, wp_post2tag WHERE wp_posts.ID = wp_post2tag.post_id AND wp_post2tag.tag_id = 546 AND wp_posts.post_status = 'publish' AND wp_posts.post_date < NOW() ORDER BY wp_posts.post_date DESC LIMIT 0,3", OBJECT);
?>Forum: Plugins
In reply to: Paginate 4000 postsI found WP-PageNavi, a very fast plugin… but hard to customize.
Forum: Themes and Templates
In reply to: Customize previous_post() linkonly found a plugin… https://guff.szub.net/2005/01/18/next-previous-post-img/
Forum: Themes and Templates
In reply to: Conditional tag problem in sidebar…. hum… when I erase
<?php wp_meta(); ?>
it seems ok… know why ?
Forum: Themes and Templates
In reply to: Not display html when there is no resultNot really what I need : I put a <hr /> before the end of the post.
It will be ok ??
Forum: Themes and Templates
In reply to: Using CSS with the_date()G-R-E-A-T !
Thanks !
Forum: Themes and Templates
In reply to: Using CSS with the_date()the_date('<span class="day">j</span> <span class="month">F</span> <span class="year">Y</span>')
that’s sound good but not working… someone can correct it, I’m a newbie in php ??
Forum: Themes and Templates
In reply to: Using CSS with the_date()The date for the first post -> that’s what I want. But I need to split day, month and year to apply a style to each (not the same for the 3).
Forum: Themes and Templates
In reply to: Using CSS with the_date()ok thanks… but when I write
<span class="day"><?php the_date('j') ?></span>
<span class="month"><?php the_date('F') ?></span>
<span class="year"><?php the_date('Y') ?></span>Only the first one is on the screen…
Forum: Plugins
In reply to: Permalink function