sebix
Forum Replies Created
-
Forum: Plugins
In reply to: SEO Title Tag Database Errorto jashmu, thanks a lot it works and it does the job verry well. 🙂
again thanks a lot
SForum: Plugins
In reply to: SEO Title Tag Database ErrorSame problems for me, using WP 2.3 and latest update 2.1.1.
do I need to manually create wp_seo_title_tag_url if yes…could someone tell give me the appropriate instructions. thanks in advance for your help.
sForum: Developing with WordPress
In reply to: Category FilterMy solution : hope this helps,
br
s
<?php $temp_query = $wp_query; ?>
<?php query_posts(‘cat=1,15’); ?>
<?php while(have_posts()) : the_post(); ?>
<!– <?php the_title(); ?> –>
<div class=”Box”>” title=”<?php the_title(); ?>”><?php the_title(); ?><small><?php the_time(‘ j F Y’) ?></small></div><?php endwhile; ?>
<?php $wp_query = $temp_query; ?>Forum: Plugins
In reply to: Parsing posts and filtering by category.my solution, hope this helps
<?php $temp_query = $wp_query; ?>
<?php query_posts(‘cat=1,15’); ?>
<?php while(have_posts()) : the_post(); ?>
<!– <?php the_title(); ?> –>
<div class=”Box”>” title=”<?php the_title(); ?>”><?php the_title(); ?><small><?php the_time(‘ j F Y’) ?></small></div><?php endwhile; ?>
<?php $wp_query = $temp_query; ?>Forum: Developing with WordPress
In reply to: Category FilterI’m working on this king of stuf but I’m not a coder :`<?php
$posts = get_posts(‘numberposts=6&category=12’);
foreach($posts as $post) :
?>
<div class=”Box”>” title=”<?php the_title(); ?>”><?php the_title(); ?><small><?php the_time(‘ j F Y’) ?></small></div>
<?php endforeach; `?> thanks for your help guys. sForum: Plugins
In reply to: Parsing posts and filtering by category.Hi 4Him, could you please tell us if you find a solution if yes could you please share with us your solution/source code. Thanks in advance. S
Forum: Developing with WordPress
In reply to: Category FilterHi, I would like to know how it will be possible to display archives list sorted by Category and filtered by Another Category and post listed by date within this part. I would like to display this in one category/archive page like this’
‘Food’ (categroy A)‘After 4 month’ (Category B)
date : Post Tittle(+permalink)
date : Post Tittle(+permalink)
…‘After 5 month’ (Category C)
date : Post Tittle(+permalink)
date : Post Tittle(+permalink)
…‘After 6 month’ (Category D)
date : Post Tittle(+permalink)
date : Post Tittle(+permalink)
…etc
Note ‘After 4 month’ is a category not a date.
Thanks in advance for your previous help.
S