Ankit Rawat
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Local SEO By Ankit Rawat] Missing fieldHi olistic,
Thank you for your message.
The?
priceRange
?field is optional in the Local Business schema, so I didn’t gave it much importance. However, I’ve addressed this and other improvements in the upcoming?v3.0 release, launching in a day or two. This update includes bug fixes, new features, and better schema validation.Once updated, please revalidate your schema. If issues persist, let me know—I’ll be happy to help!
Best regards,
AnkitForum: Reviews
In reply to: [Local SEO By Ankit Rawat] Works GreatThank You ??
Forum: Themes and Templates
In reply to: How to List Last 5 Post from Every Category in Index.phpJust an Update:
I want to make it something like:
<?php error_reporting(0); get_header(); ?> <td> <table style="text-align:left;" width="900px" border="0" align="center"> <tbody><tr class="style13"> <?php if (have_posts()) : ?> <td width="8%" height="14" class="style13">» DATE</td> <td width="58%" class="style13">» DESCRIPTION</td> <td width="12%">» CATEGORY</td> <td width="12%">» TYPE</td> <td width="10%">» AUTHOR</td> </tr> <?php query_posts('cat=4&showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <tr class="submit"> <td height="14" nowrap="nowrap" class="style14"><?php the_time('Y-m-d') ?></td> <td nowrap="nowrap"><a target="_blank" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></td> <td nowrap="nowrap"><?php the_category(', ') ?></td> <td nowrap="nowrap"><?php the_tags('', ', ', ''); ?></td> <td nowrap="nowrap"><?php coauthors_posts_links(); ?></td> </tr><?php endwhile; ?> <br></br><br></br> <?php if (have_posts()) : ?> <td width="8%" height="14" class="style13">» DATE</td> <td width="58%" class="style13">» DESCRIPTION</td> <td width="12%">» CATEGORY</td> <td width="12%">» TYPE</td> <td width="10%">» AUTHOR</td> </tr> <?php query_posts('cat=3&showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <tr class="submit"> <td height="14" nowrap="nowrap" class="style14"><?php the_time('Y-m-d') ?></td> <td nowrap="nowrap"><a target="_blank" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></td> <td nowrap="nowrap"><?php the_category(', ') ?></td> <td nowrap="nowrap"><?php the_tags('', ', ', ''); ?></td> <td nowrap="nowrap"><?php coauthors_posts_links(); ?></td> </tr><?php endwhile; ?> </tr></tbody> </table> <div class="navigation"> <?php if(function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi() ?> <?php else : ?> <?php next_posts_link(__('Next','fusion')) ?> <?php previous_posts_link(__('Back','fusion')) ?> <?php endif; ?> </div> <div> </div> <?php else : ?> <h3>Not Found</h3> <p>Sorry, but you are looking for something that isn't here.</p> <br /><br /> <?php endif; ?> <div class="search"> <?php get_search_form(); ?> </div> </center> </div> <?php get_footer(); ?>
But the above code is giving error .. ??
Viewing 3 replies - 1 through 3 (of 3 total)