rikoona
Forum Replies Created
-
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Twitter Authentication FailsYes, I experience the same. please provide proper guidance about this.. thanks.. hmmm.
Forum: Fixing WordPress
In reply to: Feed for Custom Post TypesHey There,
If this solution
function myfeed_request($qv) { if (isset($qv['feed'])) $qv['post_type'] = get_post_types(); return $qv; } add_filter('request', 'myfeed_request');won’t work for you, then you can use a helper created by Matt Wiebe, works like a charm, it includes rss, pagination for custom post types etc.
you can get it
hereand put it somewhere on the theme directory and include it on the functions.php
instead of register_post_type, use sd_register_post_type to register a custom post type,
cheers,
Forum: Fixing WordPress
In reply to: Feed for Custom Post TypesGot it…..
Used this to include all post from all post types:
function myfeed_request($qv) { if (isset($qv['feed'])) $qv['post_type'] = get_post_types(); return $qv; } add_filter('request', 'myfeed_request');Taken from: http://core.trac.ww.wp.xz.cn/ticket/12943
Pheeew…
Forum: Fixing WordPress
In reply to: Feed for Custom Post TypesHello,
Great Information.. thanks
I manage to have a category for each post in my custom post type.
I also manage the display to filter it with each category on the page.
Is it possible to display all post in a post type with a specific category on a RSS Feed?…
Forum: Plugins
In reply to: Audio Player that Doesn’t Stop on PageloadHello..
I’m new here…
have an audio player playing music in the background that doesn’t stop playing on a new page load.
I think using frameset is the solution but I don’t like to use frames… can someone provide the right path for this?.. thanks in advance..