marenm
Forum Replies Created
-
Forum: Hacks
In reply to: Site made up entirely of widgetized zonesOhhhh ok I see what you mean (I think). So each time I call my custom post widget would be another loop?
What about something like this plugin:
http://wordpress.org/extend/plugins/single-post-widget/Forum: Hacks
In reply to: Site made up entirely of widgetized zonesYeah that’s what I figured.
So it’s possible to make a site that entirely bypasses the loop?
Can’t find much info on this anywhereForum: Fixing WordPress
In reply to: wp_enqueue_script was called incorrectlyI’m having a similar problem.
The enqueue error pops up at all times, and when I go to update/publish/trash a post I get a fatal error and the dreaded white screen.I’ve also deactivated all plugins and deleted everything from my functions.php file (am making a thematic child theme)
What theme are you using? I seem to be only getting this error with Thematic.
Forum: Hacks
In reply to: displaying date and excerpt with wp_get_recent_posts ?Thanks! That did work, at least most of the way.
However, instead of the post title, for some it just displays “Home.”
Very strange. Any thoughts?
Here is my code (almost identical)//Call Recent Posts function recentpostcycle() { ?> <div class="cycleNewsPosts"> <ul> <?php $args = array( 'numberposts' => 10, 'order' => 'ASC', 'category_name' => 'news'); $postslist = get_posts( $args); foreach ($postslist as $post) : setup_postdata($post); ?> <li class="entry"> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php the_time(get_option('date_format')) ?> <?php the_excerpt(); ?> </li> <?php endforeach; ?> </ul> </div>Forum: Themes and Templates
In reply to: Single post when clicking on taxonomy termDid anyone ever get a definitive answer on this?
I’ve tried both these code snippets in my functions.php file and can’t get either of them to work (I’m making a Thematic child theme).
I’ve got the TagPages plugin installed so I’d really like for this to work with Pages, rather than posts.Forum: Hacks
In reply to: Can't get child pages to show up on parent when using functions.phpSorry about that, I’ve never used pastebin before.
Here is a link to the code (is this how it should be posted??)Forum: Hacks
In reply to: Best Practices – inserting conditional element in headerSorry, I don’t think I was being very clear with my question.
First, my custom theme is a child theme.
I understand the Conditional Tag part. I’m wondering where exactly I should put that code (and how to put it there) because I’d like to do it via the functions.php file.
I don’t really understand how to insert it via a hook or filter.
Thanks!Forum: Plugins
In reply to: Best Practices – inserting conditional element in headerOops, sorry, I think this in the wrong forum
Forum: Plugins
In reply to: NextGen Gallery imagerotator.swf problems (can't find path)Found the problem. Resolved.