What is the best way to store custom variables

I need to store the id and secret key of my FB application. I don’t want to write them directly in my template. What do you recommend ?

2 Answers
2

I recommend you to store it in WordPress options table using function add_option() function as this is site specific data and not post/category specific.

Leave a Comment