morticya33
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Facebook Wrong CountI am also having the same problem, however I actually have 2166 shares on this post:
Is there something wrong with the getFacebookShareCount() function?
Forum: Fixing WordPress
In reply to: Query posts with custom term not ordering postsHey Michael, thanks for the tip!
I was working on :
$args = array( 'post_type' => 'product', 'taxonomy' => 'prodcat', 'term' => 'term name', 'nopaging'=>true, 'orderby'=>'title', 'order'=>'ASC', ); query_posts($args);and it didn’t seem to want to sort by title properly, but using your version instead it worked brilliantly! 🙂
Forum: Fixing WordPress
In reply to: bug in pagination with nextpage when using category in permalinkForum: Fixing WordPress
In reply to: nextpage tagOuch, noted then! Thanks for clarifying, esmi!
Will just have to wait it out until this is fixed. 🙂
Forum: Fixing WordPress
In reply to: nextpage tagWith default permalink settings it all works fine.
For my end it only doesn’t work with custom permalinks (/%category%/%postname%/) – well, I’m not really trying with any other combination 🙂
Forum: Fixing WordPress
In reply to: nextpage tagJust found out that if the post is in a sub-category and not the main category, it doesn’t work as it should.
So let’s say you have two categories :
Category A
— Category BAnd you’ve posted your post in Category A only, it works.
If you’ve posted it in Category B only, and it links like this – /category-b/post-name/2 then it works.
However if you have posted it in Category B only and the link is like this – /category-a/category-b/post-name/2 then it stops working.
Forum: Fixing WordPress
In reply to: nextpage tagForum: Themes and Templates
In reply to: Sticky posts not working?Also I forgot to mention that that category is a child category, just in case it affects it.
Forum: Themes and Templates
In reply to: Sticky posts not working?hey chris, thanks for the code, but for some reason it doesn’t work for me!
I stuck in the function in my functions.php, and called out in a specific category page this:
get_posts_with_stickies(9,3)What happens after that is that my category page (in this instance category-3.php) only has one post – the sticky post, but not the rest.
Am I doing something wrong?
Thanks in advance!