Anna Meurer
Forum Replies Created
-
Hi redcocker,
that’s great!!!!! Thanx a lot!!
Greetings from Austria
Forum: Fixing WordPress
In reply to: wp_query and post_parent -> not workingI have an additional question:
Is it possible to set the value for “post_parent” with the titel of the page instead its ID?
e.g. $query = new WP_Query('post_type=page&post_parent=contact');I know, this is not working. My question: is there a possibility?
Forum: Plugins
In reply to: [comments-likes] [Plugin: comments-likes] pulling top 5 likesHi maxemil,
thanx for that code. I’ve made a small tweek, so that you will have a number in front of every comment:
function cl_return_top_5() { global $wpdb; $counter==0; $cl_table_name = $wpdb->prefix . "comments_likes"; $liketop5 = $wpdb->get_results($wpdb->prepare("SELECT SUM(like_ID),like_comment_ID FROM $cl_table_name GROUP BY like_comment_ID ORDER BY SUM(like_ID) desc LIMIT 5;")); foreach ($liketop5 as $acomment) { $counter++; $id_acomment = $acomment->like_comment_ID; $commentauthor = get_comment_author($id_acomment); $commentexcerpt = get_comment_excerpt($id_acomment); echo '<div class="commentliketop5">'; echo '<h3>'.$counter.': '.$commentauthor.'</h3>'; echo '<p><a href="'.get_comment_link($id_acomment).'">'.$commentexcerpt.'</a></p>'; echo '</div>'; } }Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Adding a Search BarHi
do anybody know, why this code does’nt work with my gallery? I’m using WP 2.8.4, nextGen 1.3.6, PHP 5.2.11.
I insert in the title, description alt and tags some words but still no search results, eg. “standbild”.
Here’s the site: http://infohund.de
I read all the post in the forum. Everybody’s pointing to nearly the same peace of code. But it’s not working in my gallery.
What is wrong? Anybody an idea?
1000000000000 Thanx!
Greetings from Austria
AchimForum: Fixing WordPress
In reply to: where do I get a WordPress.com API key from?@jeremyclark13:
Hi, that’s what I ment 😉@belenenses
You have to signup for an wordpress.com account. It’s enough to have only the account without a wordpress.com-blog.SignUp here: http://wordpress.com/signup/
Greetz
AchimForum: Fixing WordPress
In reply to: Posting Article on different directory..Hi,
I think you can solve this by using the categories. You can apply a special permalink-structur for the categories. See in your WordPress-Admin-Panel -> Options -> Permalinks
Greetz
AchimForum: Fixing WordPress
In reply to: where do I get a WordPress.com API key from?Hi,
the key is in your profile here on this site.
Greets
AchimForum: Fixing WordPress
In reply to: next_posts_link root linkor other way around – how can I edit the perma-structure, that the link to /blog/page/2/ works?
Forum: Fixing WordPress
In reply to: next_posts_link root linkSame for me – anybody an idea?