Started 6 days ago (2009-11-05 10:20:38)
by drlinux
Ps: I tried creating custom areas fs-image like but it doesn't works...
Started 1 week ago (2009-11-03 15:59:06)
by MichaelH
Could use get_next_posts_link then use str_replace to put that marked in the link the use echo to display the link.
Also could modify the function get_next_posts_link in wp-includes/link-template.php but modifying core code is discouraged.
Then again there might be a filter for that but darned if I can see it...
Started 1 week, 1 day ago (2009-11-02 14:41:43)
by jeremyclark13
The proper way is to use
conditional tags in the actual theme files. Then you can test for specific pages and then give the page the proper CSS.
Started 1 month, 1 week ago (2009-09-28 20:52:56)
by designgears
I like
magic-fields better.
Started 2 weeks, 1 day ago (2009-10-27 04:43:09)
by Ovidiu
oh, as a side note, I also found this plugin: http://wordpress.org/extend/plugins/photoracer/ which seems a bit outdated, but maybe you can check what permalink solution this one uses?
Started 5 days, 21 hours ago (2009-11-05 13:04:31)
by MichaelH
<?php
$cat=get_cat_ID('yourcategoryname');
$args=array(
'category__not_in' => array($cat),
'showposts'=>-1,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><small><?php the_time('m.d.y') ?></small> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?...
Started 1 week ago (2009-11-03 18:57:26)
by MichaelH
One example:
http://wordpress.org/support/topic/327836?replies= 5
Not sure what you mean by keywords though.
Started 1 week, 6 days ago (2009-10-28 18:01:48)
by fredericktownes
Do you have the very latest build installed? You might want to back up your settings file uninstall and
pull down the latest build again.
Started 2 months ago (2009-09-10 09:34:17)
by saeidzebardast
same problem!
wp
2.8.4
wsc 0.9.6.1
Started 4 days, 11 hours ago (2009-11-06 23:29:58)
by scribu
Could you paste the exact content of your post, as entered from the admin area?