stinker
Forum Replies Created
-
Forum: Plugins
In reply to: [Activity Log - Monitor & Record User Changes] Display ARYO activity publiclyThank you!
I am okay with PHP, but could you suggest where I might learn a little more about how to pull the data from aryo_activity_log ? For example, in what WordPress file does aryo_activity_log get pulled?
Forum: Fixing WordPress
In reply to: How to grab custom query parameter?Rather than use a conditional statement, I opted for the following…
<?php include(TEMPLATEPATH.'/header-' . $_GET["myparam"] . '.php'); ?>Thanks for the help, jenz.
Forum: Fixing WordPress
In reply to: How to grab custom query parameter?Any thoughts on how I might use
$_GET["myparam"]instead ofis_categoryin the above conditional statement?Would it be something like?…
<?php if $_GET[“myparam”] == “android” ?>
My PHP skills are feeble. 🙁
Forum: Fixing WordPress
In reply to: Image Uploader. Different Sizes w/ single upload?I figured it out.
The following plugin will automatically add a lightbox that references the full size image.
Forum: Fixing WordPress
In reply to: wrong date on new and old postsah yes… simple mistake on my part.
I was changing the day from “D” to “d”, but made it “m” instead.
Thank you!
Forum: Everything else WordPress
In reply to: Focused topic – this forum, too many unanswered postsThe ww.wp.xz.cn team should consider ways to provide its community with a better subdivision of its forums. The “How-To” forum behaves more like a stock ticker than a place to get questions answered.
The “How-To” forum is a victim of its own success.
Forum: Fixing WordPress
In reply to: wrong date on new and old postsWhat is weird is that this started to happen long after I built the blog. Many newer posts got re-dated, but older posts remain unaffected.
Check it out…
Forum: Fixing WordPress
In reply to: wrong date on new and old postsI am using it in a query_posts loop.
<?php if (have_posts()) : ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=blog&paged=$paged"); ?> <?php while (have_posts()) : the_post(); ?> <div class="entry-date"><?php the_time('M m Y') ?></div> <?php endwhile; ?> <?php endif; ?>Forum: Fixing WordPress
In reply to: wrong date on new posts@esolen or anyone else…
Can you explain how I should change current_time to fix this problem?
I’m having the same problem.
Forum: Themes and Templates
In reply to: Make Indiviual link of posts under Category or ArchiveBy “like this”, I assume you mean the “Links” section of the right nav sidebar. You want posts nested in categories.
I know it could be accomplished using this tag…
<?php get_posts(‘arguments’); ?>
Here is the documentation for it…
http://codex.ww.wp.xz.cn/Template_Tags
http://codex.ww.wp.xz.cn/Template_Tags/get_postsForum: Themes and Templates
In reply to: dynamic list of subcategories and postsgixbecks… it isn’t clear what you are asking. i will respond on the other thread.
What I am specifically looking for is a LOOP that will do both of these…
1. Get all child categories of a specific parent.
2. For each child category, list all posts.
See first post for example of how it will look.
Forum: Themes and Templates
In reply to: single post, multiple categoriesThat’s right.
To preface, I’m not a coder. But what if some category information were placed in the referring link. For example…
‘http://www.domain.com/?cat=10&p=14’
This would require a plugin to add the “cat=” to the link and another plugin to receive the information and return the correct template.
Thanks for taking a look.
Forum: Themes and Templates
In reply to: single post, multiple categoriesI’m using Kafkaesqui’s “Category Template Inheritor”.
http://ww.wp.xz.cn/support/topic/58382?replies=5
I was also using Kaf’s “Post Templates by Category”, but it seems like the functionality I need from that plugin is built into WP 2.0., therefore I turned it off.
http://guff.szub.net/2005/07/21/post-templates-by-category/
Let me know if you have any questions.
Forum: Fixing WordPress
In reply to: how to list the top 5 posted in categories only?Sorry about that; I guess I did the opposite of “expand”.
This is definitely what I’m looking for.
Let me expand (after the fact)… on most of my pages, I want the complete list of subcategories within each category. But on my main index page, I only want 8 subcategories in each category menu. As a bonus, it would be nice to alphabetize those 8, but I’ll settle for however it comes out.
Thank you Kafakesqui!! Somehow I knew you were the person who would help me out.
Forum: Fixing WordPress
In reply to: how to list the top 5 posted in categories only?I guess I want the equivalent of the “child=” in wp_list_cats