Maxaud
Forum Replies Created
-
Forum: Your WordPress
In reply to: First attempt at ThemeVery nice, I like the drop-down menu.
Will this be a publicly available theme?I’d like to know more about the drop-down menu if you could. Is there much Javascript involved?
Forum: Your WordPress
In reply to: Check out my Chelsea Handler Sitenice looking site.
I’d recommend dropping the right margin down on the top navigation so it all falls into one row.Forum: Your WordPress
In reply to: Hack and HueLooks good and to the point.
I would think that a verticle column type background to seperate one side from the other would be good.
Just an idea.Forum: Fixing WordPress
In reply to: Multiple LoopsNot sure what to tell you.
Hopefully someone else can chime in.Does it show up without the “tag=feature”?
Forum: Fixing WordPress
In reply to: Multiple Loopsok,
I know that I’ve left a lot of comments so far but would this work in your case?:<?php $categoryvariable=$cat; // assign the variable as current category $query= 'cat=' . $categoryvariable. '&orderby=date&order=ASC'; // concatenate the query query_posts($query); // run the query ?>Forum: Fixing WordPress
In reply to: Multiple Loopsalso,
what if you did some if/else statements to pull up the right category number?<?php if (in_category('1')) continue;?>Or would something like this work?
using
<?php single_cat_title('prefix', 'display'); ?>to getthe category name and then entering it into something like this: (at the #####)<?php $my_query = new WP_Query('category_name=#####'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID;?> <!-- Do stuff... --> <?php endwhile; ?> <!-- Do other stuff... --> <?php if (have_posts()) : while (have_posts()) : the_post(); if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?> <!-- Do stuff... --> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Multiple LoopsIS there a new tag that replaced
<?php the_category_ID(echo); ?>similiar to<?php the_ID(); ?>that could be used to add the number to &category=# ??Forum: Plugins
In reply to: Leopress theme made widget-ready?Do widgets work on other themes?
Forum: Plugins
In reply to: Leopress theme made widget-ready?I don’t know what to tell you.
Sorry 🙁Forum: Your WordPress
In reply to: I modified Kubrick a bit, feedback?So could I style the ‘current_page_item’ class with a background to display dynamic navigation? I didn’t see it on the page you linked to.
I’ll get around to changing the font and reducing the image size a bit while still trying to keep some quality.
Forum: Plugins
In reply to: Leopress theme made widget-ready?Those are the only two files that I edited and it works fine on my site.
Maybe it’s a server issue?Where is your site hosted through?
Forum: Plugins
In reply to: Leopress theme made widget-ready?When the above works, you can style your widgets with CSS using #rightbar
Forum: Plugins
In reply to: Leopress theme made widget-ready?ok, edit the sidebar-extra.php file to say this:
<div id="extracontent"> <div id="about" class="box"> <img src="<?php bloginfo('template_directory'); ?>/img/profile.jpg" alt="" class="photo" /> <h3>About</h3> <?php the_author_description(); ?> </div> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <div id="recent" class="box"> <h3>Recent Posts</h3> <ul class="link-list"> <?php $lastposts = get_posts('numberposts=15'); foreach($lastposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> </div> <?php endif; ?> </div>and then make a file called functions.php that says this:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<div id="recent" class="box">', 'after_widget' => '</div></div>', 'before_title' => '<h3>', 'after_title' => '</h3><div id="rightbar">', )); ?>That should work.
Let me know how that goes.Forum: Developing with WordPress
In reply to: How to restrict file downloads to specific users?This is interesting and would be interested myself in knowing more how to do this.
Forum: Plugins
In reply to: Leopress theme made widget-ready?what portions of the theme do you want “widget ready”?