mankot
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Nav links – how?This is just a list of all posts within a certain category. Take a look at Custom Querys and Multiple Loops
Forum: Fixing WordPress
In reply to: how to show simple page linkwp_list_pages(‘include=67&title_li=’);
should do the trick? Have u tried it?
Forum: Fixing WordPress
In reply to: is_page not workingBtw make sure that this is really an conditional tag issue and not just a problem with your css by inserting some echo.
E.g. put
<?php echo "left"; ?>
in the if-clause and
<?php echo "right" ?>
in the else clauseForum: Fixing WordPress
In reply to: is_page not workingAre you using a custom query or several loops on one page? Try to insert
<?php wp_reset_query(); ?>
just above the loopAdditionally you can use substr() to display just the first 100 charackters.
Forum: Fixing WordPress
In reply to: Adding Video to post/page@iridiax, I think Listic wants the videos to be uploaded locally on his server by using the wordpress backend. Otherwise the viper plugin u suggested would be the right choice!
Forum: Fixing WordPress
In reply to: Adding Video to post/pageWhich format will the videos have? Take a look at the Flash Video Player Plugin over here mac-dev.net. The code in your posts will look like this: [flashvideo file=PathToFile /] If this is even to much code, you’ll probably have to provide a custom write panel with an extra field for uploading your video files and you’ll be able to insert those videos directly in your template by using the custom fields functionallity wordpress provides. Take a look at this tutorial about how to create custom write panels @ wefunction.com and using custom fields in wordpress codex. You might also be interested in the Flutter-Plugin.
Cheers
Thanks for ur reply.
I know that single.php is meant to display a single post but I also know what wordpress is capable of. I wasn’t really sure if this will work and I just gave it a try. Surprisingly pagination WORKS with default permalink structure on single.php with a custom query (e.g. domain.tld?id=1&paged=2) But it does not work with custom permalink structure. We only have to figure out why.
The requested post is beeing displayed by single.php. After this single post I’m goin to display all posts of a certain category which I want to be paginated.
E.g.:
Header
Single Post
Post of certain category
Post of certain category
Post of certain category
PaginationFooter
If there is no reasonable chance to achieve this by using the pagination funcionality of wordpress I’ll try a custom pagination using ajax.
Hope I made it clear
Thanks so far