vaypay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categorizing or Tagging Visitor Commentsany advice? anyone?
Forum: Fixing WordPress
In reply to: Categorizing or Tagging Visitor Commentsanother try at this
Forum: Fixing WordPress
In reply to: Permalink broken..PLEASE HELPhow a simple error will drive you crazy…
if this happens to someone else…
in the permalink admin, I made the mistake of making the custom structure /%post_name%/ in which works fine for letters, but not numerals apparently.
Changed it to /%postname%/ and it all works properly.
Forum: Fixing WordPress
In reply to: linking to a recent post in a specific categoryso you enter the category in place of where mine says “events“&showpost(3 or the number of latest you want to display)
Forum: Fixing WordPress
In reply to: linking to a recent post in a specific categorynot sure if this is what you are asking, but have you tried a page template that has queries the posts in that category? for instance;
<div id=”currentBox” class=”eventBox” role=”main”>
<?php if (have_posts()) : ?>
<?php query_posts(‘category_name=events&showposts=3’); ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?>
<?php if ( get_post_meta($post->ID,’event’) ) : ?>
<p><?php echo get_post_meta($post->ID,’event’, true); ?></p>
<?php endif; ?>
<?php if ( get_post_meta($post->ID,’event_img’) ) : ?>
<p><?php echo get_post_meta($post->ID,’event_img’, true); ?></p>
<?php endif; ?>
</h2><div class=”entry”>
<?php the_content(); ?>
</div></div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
Forum: Fixing WordPress
In reply to: Permalink broken..PLEASE HELPmeant to add this
breaks:
works:
https://www.domain.com/007 (or anything else but the years….2001, 2005 etc..Forum: Fixing WordPress
In reply to: separate comment list from form… basically being able to call the comments list separately.
how do I keep all the info attached from the form to comments without using <?php comments_template(); ?>