tastymouse
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Event Ticketing] [Plugin: WP Event Ticketing] Multiple events – When?Will it have iDeal payment to? It’s the number 1 paymentsystem in the Netherlands.
Forum: Fixing WordPress
In reply to: Sticky within a categoryYes :)! This did it. Many thanks!
Forum: Fixing WordPress
In reply to: Sticky within a categoryThanks, this works. But now the sticky post also shows up on the front-page. How do I exclude it from the front-page?
Forum: Fixing WordPress
In reply to: Sticky within a categoryWhat I want is:
-A homepage with posts form one category only
-Several pages, all displaying one category, which each have one sticky postFor the homepage I added the above code to exclude the other categories.
Forum: Fixing WordPress
In reply to: Sticky within a categoryI entered the correct code and it doesn’t work. The sticky post is not sticky in the category. Which seems logical to me since it makes the posts sticky on the front-page, not sticky in general.
The error is probably because of another script which I use to show only posts of one category on the front-page.
<?php
if (is_home()) {
query_posts(“cat=-5,-6,-7,-8”);
}
?>Forum: Fixing WordPress
In reply to: Sticky within a categoryHi, thanks. I get the following error: Warning: array_merge() [function.array-merge]: Argument #1 is not an array in wp/wp-content/themes/twentyten/index.php on line 36
And yes, I know I’ll have to create a child theme, I still have to learn that.
Forum: Themes and Templates
In reply to: Assign widgets to pagesOkay, I’ll crate a child template.
I found this plugin which makes it possible to assign widgets to pages: http://wordpress.org/extend/plugins/mycustomwidget/Thanks, Tom