Jump to content
thewebscaper

Hooks, filters?

Recommended Posts

thewebscaper

Hi, I'm new to PageLines but very excited to move toward using a framework rather than standalone themes. I'm experienced in modifying themes in detail but have never had the need to use filters or hooks -- but ready to learn. I searched at length in this forum and the wiki but keep running into pages that are "under development" or "not found" -- and the video on using hooks didn't help. Neither did wordpress.org's hooks and filters page. All I am attempting to do is add whatever code necessary to my Base child theme's functions.php file that will change the default RSS feed URL from URL/feed to my feedburner URL. I realize there is already a filter in place for pagelines_branding_rssurl but I can't find the syntax for changing the default URL to my feedburner one. FYI, when I open the Base theme's functions.php file, there's a section that says "filters example" and references a sample filter, but it's not there. The functions.php file also references "for advanced customization" to see the advanced.php file - but I cannot locate that file anywhere..... Any help would be most appreciated. Thank you. Kym

Share this post


Link to post
Share on other sites
Simon
I use this: [code]add_filter( 'pagelines_branding_rssurl', create_function('', 'return "http://feeds.feedburner.com/TheBlogOfPross";') ); [/code]

Share this post


Link to post
Share on other sites
Rob
Make sure you change "TheBlogOfPross" to your own, else you'll bring up Simon's blog. Also, to help with other future hooks, try http://demo.pagelines.com/framework/theming/

Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites
thewebscaper
Thanks, Simon & rangelone - answered my question and the Theming site will be very helpful to me!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×