Mobster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Organizing large numbers of products.The only thing that really separates the two methods is post/cats show up in rss right?
How about querying custom page data. Wouldn’t post/cats also be the easiest way to customize your queries? You have the use of archives and cat id’s. Posts seem to be the way to go IMO.
I’d still love to hear other opinions.
Thanks!Forum: Fixing WordPress
In reply to: Organizing large numbers of products.Anyone?
Forum: Themes and Templates
In reply to: get_post_thumbnail – jquery slideshowThat code doesn’t exist in your link and I’m looking for the same thing?
Forum: Plugins
In reply to: WordPress 2.9.1 update crashes timthumbBump
Forum: Plugins
In reply to: WordPress 2.9.1 update crashes timthumbBump
Forum: Plugins
In reply to: WordPress 2.9.1 update crashes timthumbWhitelist rules? and Mod_sec. Please explain.
Thanks!
Forum: Plugins
In reply to: Allow users to create their own page and URLKiller! Thank You!
Forum: Fixing WordPress
In reply to: User registration and comments posting 2.8Add this to your sidebar.
<!--begin login--> <?php if (!(current_user_can('level_0'))){ ?> <h2>Login</h2> <form action="<?php echo get_option('home'); ?>/wp-login.php" method="post"> <input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="20" /> <input type="password" name="pwd" id="pwd" size="20" /> <input type="submit" name="submit" value="Send" class="button" /> <p> <label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label> <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" /> </p> </form> <a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword">Recover password</a> <?php } else { ?> <h2>Logout</h2> <a href="<?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?>">logout</a><br /> <a href="wp-admin/">admin</a> <?php }?> <!--/ login-->
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?Thanks t3 for taking the time to assist me.
I went through all the normal testing I always do by disabling plugins, testing bits of code. ect…
The next thing I always try is phpMyAdmin optimize table and repair table. This time, that did the trick.
Forum: Fixing WordPress
In reply to: All my wordpress blogs on 8 different domains are acting crazyI am having all sorts of issues with 2.8.6.
All of my custom queries quit working, all if is home/page includes quit working.
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?Another issue, my custom queries aren’t working.
<?php $recent = new WP_Query("cat=5&showposts=5"); ?> <span> <?php while ($recent->have_posts()) : $recent->the_post(); ?> <a href="<?php the_permalink() ?>" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"> <?php the_title(); ?> </a> <?php endwhile;?>
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?Ok, I think I’m on to something here.
I ran across an include in my code I forgot about.
Here it is:
<?php if ( is_home() ) { include ('mypage.php'); } ?>
It works perfectly. I experimented buy putting the same code right below it and it only included one instance.
Has there been some sort of limit to the amount of if’s or if homes allowed on one page?
Just a guess…
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?Nope, No errors.
This works:
<?php include( TEMPLATEPATH . '/mypage.php' ); ?>
This doesn’t:
<?php if ( is_home() ) { include ( TEMPLATEPATH . '/mypage.php'); } ?>
Why not in 2.8.6? I guess that’s the million dollar question considering all of the above are played out as methods to include in wordpress documentation?
I smell a bug…
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?This is crazy. None of the above work. I have used just about every version include tag you mentioned for what seems like years with no issues? Could this be a bug of some sort?
Forum: Fixing WordPress
In reply to: if is home includes not working 2.8.6?Well… I appreciate your help but neither are doing the trick. They make sense though…
Isn’t there a stylesheet directory version of this?