ladoza
Forum Replies Created
-
Forum: Plugins
In reply to: Tabs filled with parts of page contentIf I use divs instead of spans, it makes the code a little bit better. But I’d rather not use javascript outside of the header at all. Maybe an easier question would be if it’s possible to insert code from the fuction in between the page’s <head> tags?
Forum: Fixing WordPress
In reply to: Disabling pagenumbers/pagination with WP_QueryFound it!
I used the above code in a file called news.php and included that on my postpage using
echo include (TEMPLATEPATH . '/news.php');I changed that to
include (TEMPLATEPATH . '/news.php');(dropped the echo) and now the number’s gone. Had nothing to do with the wp_query function at all 🙂Thanks for your replies
Forum: Fixing WordPress
In reply to: Disabling pagenumbers/pagination with WP_QueryThere indeed are no pagenumbers when the default theme is activated. Hmm must really be something template-related then, I’ll go try and find it. Thanks for pointing me in the right direction!
[Edit] It’s weird though, I made my template from scratch and don’t recall building in any pagination functions. I hope I’ll find what is causing it (plugins are deactivated).
Forum: Fixing WordPress
In reply to: Disabling pagenumbers/pagination with WP_QueryThanks for your reply.
But I don’t understand, why does a pagenumber show up when I use the posted code? I am not using any navigation plugins and I’m not calling any navigational functions.