Create settings page for Wordpress theme

datePosted on 12:51, May 31st, 2008 by MillaN

Not many Wordpress themes have additional settings page where blog admins can adjust some of the themes settings. One of the reasons for this is hard to find examples describing in details what you need to do, although documentation has some basic info about that. Also, most themes don’t need such settings page, or is too hard to implement theme design that could be flexible to change like this.
tutorial_themecp_starscape.png

Most themes can be customized by editing php and css files, but this can be a problem for most users, who use blog as tool, and don’t know much about web design. For them it would be much more convenient to have simple page in their admin panel and selection of options to tweak.

This article will show you step by step how to create options page for your theme, how to save settings and how to use them in your theme. Mine Starscape theme will be used as a reference in some points, so you might also want to download it and check for yourself what can you do with settings page.

Just to be clear, I am not going to create nothing fancy here, I will keep the code simple, so you can see what’s going on. If you want more details you can always take a look at Starscape theme code.

Requirements:

For this to work, you need to know:

  1. How to create regular Wordpress theme
  2. How to work with PHP classes

Step 1: Required Files

For what we are going to do, we need file ‘functions.php’ that should be located in your theme folder. If it’s not there, then you will need to create it. Functions file will be included in Wordpress execution cycle.

Also, you will need one more file where you are going to add code for your settings page. Example I will create here, will use class approach because it will be much easier to maintain in the future. Let’s call this file ‘controlpanel.php’. It would be good to create separate folder for all files related to control panel. Create such folder and call it ‘code’. Also, in this folder add one css file called ‘controlpanel.css’ where you are going to put all css styles you are going to use on your control panel page.

So, the files we need:

functions.php
code/controlpanel.php
code/controlpanel.css

Step 2: Basic Control Panel class

In ‘controlpanel.php’, add following code:

1
2
3
4
class ControlPanel {
  function ControlPanel() {
  }
}

And now add code to the ‘functions.php’ file for loading control panel:

1
2
require_once(TEMPLATEPATH . '/code/controlpanel.php');
$cpanel = new ControlPanel();

This is the only thing you need in this file. This will load control panel class, and create an instance of it. Constructor for this class will actually do all the work. Functions file usually contains functions needed for a theme to work (sidebars rendering). You can either leave that in the ‘functions.php’, or you can move them to the class we created. This way this class can store all needed functions for the theme, and handling of the theme will be easier.

Step 3: Adding Wordpress actions

Next we need to to, is to make Wordpress aware of our settings page. For this, we need to add some Wordpress actions into class constructor, and methods for this actions. So, now your ‘controlpanel.php’ should look like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class ControlPanel {
  function ControlPanel() {
    add_action('admin_menu', array(&$this, 'admin_menu'));
    add_action('admin_head', array(&$this, 'admin_head'));
 
    if (function_exists('register_sidebar'))
        register_sidebar(array('name' => 'Sidebar'));
  }
 
  function admin_menu() {
    add_theme_page('Theme Control Panel', 'ThemeCP', 'edit_themes', "themename", array(&$this, 'optionsmenu'));
  }
 
  function admin_head() {
    echo '<link rel="stylesheet" href="'.get_bloginfo('template_url').'/code/controlpanel.css" type="text/css" media="screen" />';
  }
 
  function optionsmenu() {
  }
}

In line 4 we are adding action ‘admin_menu’. This will add execution of the specified function into wordpress for administration menu rendering. And in line 5, action ‘admin_head’. This will add execution of the specified function into wordpress for administration page header.

As you can see, function is specified as an array, because we are using class. Array has two elements, one is specifying instance of the class with &$this and the other is name of the function in class to call.

Admin head action renders head part of the page, and we are going to add css file here as you can see in line 13. Here, we are using wordpress function ‘get_bloginfo’ to get full url to template folder.

Admin menu is the wordpress action used for rendering complete wordpress menu, and in line 9 we are adding new subpage in the design page using function ‘add_theme_page’. First parameter is not very important, and it’s name of your page. Second one is actual title of your options page. Third paramenter should remain always ‘edit_thames’. Forth parameter should be name of your theme. And in the line xx we are registering one sidebar. And once again, array specifing function to call when user want to access this new page. After you add all this, your design menu should look like on the picture:
tutorial_themecp_1.png

Step 4: Theme Settings

The best way to store settings related to the theme is to use Wordpress build-in options mechanism that uses options table in the database. You can add one or more separate options. One options record can be used to store many different settings in array or class. We will use array approach here.

I like to have one array in the class with default values for all settings. For this example we will have two settings, so we can keep things simple:

  • display_blog_title
  • blog_title_color

So, add this in the ‘ControlPanel’ class definition:

1
2
3
4
var $default_settings = Array(
  'display_blog_title' => 1,
  'blog_title_color' => '#FFFFFF'
);

And also, add this in class constructor:

1
2
3
if (!is_array(get_option('themename')))
  add_option('themename', $this->default_settings);
$this->options = get_option('themename');

And again, ‘themename’ you can change with the name of your theme, or something else, but be careful to use unique name and be sure that no other theme or plugin, or wordpress uses that name for thier settings. This will add new option in the database. Last line will load settings into class variable ‘$options’.

Step 5: Actual Settings Page

Well, after all this, now is the time to actually show user controls for the settings we want. All code that has to handle this will go in ‘optionsmenu()’ function. Settings page is (almost) only rendering html for FORM and form elements. In our case we need one checkbox and one input field. Code that follows is very self explanatory, so I will not go in too many details about it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function optionsmenu() {
  if ($_POST['ss_action'] == 'save') {
    $this->options["display_blog_title"] = isset($_POST['cp_displayblogtitle']) ? 1 : 0;
    $this->options["blog_title_color"] = $_POST['cp_blogtitlecolor'];
    update_option('themename', $this->options);
    echo '<div class="updated fade" id="message" style="background-color: rgb(255, 251, 204); width: 300px; margin-left: 20px"><p>Settings <strong>saved</strong>.</p></div>';
  }
 
  echo '<form action="" method="post" class="themeform">';
  echo '<input type="hidden" id="ss_action" name="ss_action" value="save">';
  echo '<input type="checkbox" name="cp_displayblogtitle" id="cp_displayblogtitle"'.($this->options["display_blog_title"] == 1 ? ' checked' : '').' /><label style="margin-left: 5px;" for="cp_displayblogtitle">Display Blog Title</label><br />';
  echo 'Blog Title Color: <input class="widefat" style="text-align: right; width: 65px" name="cp_blogtitlecolor" id="cp_blogtitlecolor" type="text" value="'.$this->options["blog_title_color"].'" />';
  echo '<p class="submit"><input type="submit" value="Save Changes" name="cp_save"/></p>';
  echo '</form>';
}

So, praticlly there are two parts, first will be used to save data posted by the form, and the other parts is actual form will all the settings we need. Also, notice that we have used CSS class for FORM tag. This class is in ‘controlpanel.css’ file.

Step 6: Change Header

No that we have working settings page is time to put these settings to work. For this two settings to work, we need to modify ‘header.php’. We need to load settings from database, and then simple use each setting to modify the rendering.

1
2
3
4
5
6
$theme_options = get_option('themename');
if ($theme_options["display_blog_title"] == 1) {
  echo '<div id="header_title" style="color: '.$theme_options["blog_title_color"].'">';
  bloginfo('name');
  echo '</div>';
}

This is only the piece of the code that shows blog title and sets the color depending on our settings.

Download source code

I have compiled the files we have created and changed in this article, so you can download them. Header file is more or less typical header file, you can easily add the code we created above to any existing header file with similar structure.

Conclusion

Well, I hope you liked this post, and that you will find it useful in creating your own custom settings pages for themes. If you have some additional questions use this comments page, forum or contact form.

VN:F [1.1.7_509]
Rating: 8.8/10 (41 votes cast)
  • Technorati
  • StumbleUpon
  • TwitThis
  • del.icio.us
  • Google
  • Facebook
  • Sphinn
  • Mixx
  • Taggly
  • Socialogs
  • YahooMyWeb
  • Yigg
  • E-mail this story to a friend!
  • co.mments
  • Blogosphere News
  • LinkedIn
categoryPosted in Design, Tutorials | printPrint

Comments:

Dipankar on July 4th, 2008 at 8:48 am

Great article. I have a question, how would you use the options within a stylesheet, lets say if I name the style.css to style.php?

VA:F [1.1.7_509]
Rating: 3.0/5 (4 votes cast)

MillaN on July 4th, 2008 at 11:58 am

Main stylesheet used by the theme MUST be named style.css (Wordpress requires that). But you can create another file and name it ’style_xtra.css.php’. There is an easy way to load options from Wordpress and you can see that piece of code in Starscape source (latest version): folder ‘themes\classic\’ file ’screen.css.php’. I was planning to cover this in my next tutorial next week.

VN:F [1.1.7_509]
Rating: 4.0/5 (4 votes cast)

CialisKa on July 16th, 2008 at 10:01 pm

Usefool post, thx

VA:F [1.1.7_509]
Rating: 3.0/5 (4 votes cast)

Luke on July 23rd, 2008 at 7:00 am

Great post, thanks a lot!

VA:F [1.1.7_509]
Rating: 4.0/5 (4 votes cast)

Comprar Cialis on August 4th, 2008 at 2:21 pm

Useful post. good luck.

VA:F [1.1.7_509]
Rating: 2.3/5 (4 votes cast)

abbigail on August 13th, 2008 at 2:14 am

i love igoogle

VA:F [1.1.7_509]
Rating: 3.0/5 (3 votes cast)

abbigail on August 13th, 2008 at 2:15 am

igoogle is a place that is where we serch for things.

VA:F [1.1.7_509]
Rating: 3.0/5 (5 votes cast)

Architectural Renderings on August 20th, 2008 at 11:09 pm

Wow, interesting info, i need to try this. bookmarked.

VA:F [1.1.7_509]
Rating: 3.3/5 (4 votes cast)

Darren Pangan on September 3rd, 2008 at 11:29 am

@ MillaN and Dipankar

No, it is not necessary that the stylesheet is named with a .css extension. You can use style.php in the link tag (head) but you must put a content type declaration inside the file style.php.

[CODE]

[/CODE]

Just place that on top of the style.php file and you can use it as a css file.

VA:F [1.1.7_509]
Rating: 5.0/5 (2 votes cast)

Darren Pangan on September 3rd, 2008 at 11:31 am

Oops.. code didn’t show..

VA:F [1.1.7_509]
Rating: 3.5/5 (2 votes cast)

MillaN on September 3rd, 2008 at 4:19 pm

@ Darren Pangan
By default Wordpress requires existance of ’style.css’ file, there is no way to change that without changing WordPress. Also, official WordPress theme website requires this file. So, all the custom css generated with php must go in some other file.

VN:F [1.1.7_509]
Rating: 5.0/5 (2 votes cast)

MillaN on September 3rd, 2008 at 4:21 pm

And, Firefox 3 has a problem with CSS files that don’t have CSS extension. Important is the file header generated by PHP, but for some reason Firefox3 requires valid extensiosn for CSS.

VN:F [1.1.7_509]
Rating: 5.0/5 (1 vote cast)

Darren Pangan on September 15th, 2008 at 7:03 am

@MillaN

It’s true that Wordpress requires the style.css file so the dynamic css file (if named with a .php extension) should go to another file.

I don’t know about Firefox 3 having problems with CSS files not having “.css” extensions. I’m using Firefox 3 and my themes that I created with dynamic CSS having .php extension works no problem.

VA:F [1.1.7_509]
Rating: 5.0/5 (1 vote cast)

table coverzz on September 15th, 2008 at 9:33 pm

yea im using mozilla too and i have had any problems

VA:F [1.1.7_509]
Rating: 5.0/5 (1 vote cast)

Sators on January 4th, 2009 at 4:58 am

Nice work - can’t wait to test it out. You might want to proofread your post once through though…

VA:F [1.1.7_509]
Rating: 4.0/5 (1 vote cast)

GorillaDude on January 28th, 2009 at 1:01 am

Great tutorial, dude. It worked like a charm. Thanks for all your help.

VA:F [1.1.7_509]
Rating: 0.0/5 (0 votes cast)

independenceltd on January 31st, 2009 at 8:17 pm

Does it work on wordpress 2.7?

VN:F [1.1.7_509]
Rating: 4.0/5 (1 vote cast)

MillaN on February 1st, 2009 at 5:49 pm

Yes, it works in WP 2.7.

VN:F [1.1.7_509]
Rating: 1.0/5 (1 vote cast)

Kidino on February 13th, 2009 at 5:12 pm

Nice… Clean code too. I like how you use a class for this. Will sure help me organize my codes. Thanks for the tutorial.

VA:F [1.1.7_509]
Rating: 3.0/5 (2 votes cast)

0p0 on March 8th, 2009 at 7:22 am

I want to build a background color customization to my theme, how can I build it?
thaks in adavnce :)

VA:F [1.1.7_509]
Rating: 1.0/5 (1 vote cast)

MillaN on March 11th, 2009 at 9:35 pm

Can you be more specific?

VN:F [1.1.7_509]
Rating: 5.0/5 (1 vote cast)

Registar on March 15th, 2009 at 2:35 am

Great coding, but on the setting page I created, none of the data that was previous saved shows up. I have the correct code in the value of the fields and such, but it doesn’t show and I have to re-enter all the fields again if I want to edit one thing. It shows up fine on where I put it in wordpress, just not in the custom page. Any help? Thanks in advanced.

VN:F [1.1.7_509]
Rating: 0.0/5 (0 votes cast)

Max on May 16th, 2009 at 8:45 pm

Great article, I am going to try this.

Thanks a lot!

VA:F [1.1.7_509]
Rating: 3.0/5 (1 vote cast)

Trackbacks:

starscape on June 7th, 2008 at 6:59 pm

[...] [...]

[...] Theme: Creating setting page for wordpress theme Tutorial de 6 pasos para crear tu propia clase que te crea tu pagina de [...]

Post a Comment

Name:
Email:
Website:
Rating:
Comment:
accutane permanent joint pain
Propecia Prescription
accutane timeline clomid dosage lutenizing hormone short Viagra Sale lipitor drug cost
lipitor is there a generic
Cipro 500mg difference between lexapro and celexa clomid with triplets; Viagra Canada symptoms of zoloft working; lipitor drug cost Zoloft Pregnancy prednisone stopped taking side effects difference between lexapro and celexa Nolvadex D accutane timeline symptoms of zoloft working; Viagra Australia lipitor drug cost lipitor is there a generic Viagra Mexico difference between lexapro and celexa accutane timeline Prednisone Tremors symptoms of zoloft working; lipitor drug cost Viagra Suppliers prednisone stopped taking side effects difference between lexapro and celexa Viagra 34434 accutane timeline symptoms of zoloft working; Viagra Online lipitor drug cost prednisone stopped taking side effects Propecia Rogaine difference between lexapro and celexa accutane timeline Viagra Price symptoms of zoloft working; lipitor drug cost Cialis Professional prednisone stopped taking side effects difference between lexapro and celexa Lexapro accutane timeline symptoms of zoloft working; Viagra Rx lipitor drug cost
prednisone stopped taking side effects
Nexium difference between lexapro and celexa clomid with triplets; Sublingual Viagra symptoms of zoloft working; lipitor drug cost Clomid Online prednisone stopped taking side effects difference between lexapro and celexa Prednisone Withdrawal accutane timeline symptoms of zoloft working; Viagra Experiences lipitor drug cost lipitor is there a generic Cytotec Controvery difference between lexapro and celexa accutane timeline Cipro 250mg symptoms of zoloft working; lipitor drug cost Viagra Sales prednisone stopped taking side effects difference between lexapro and celexa
Viagra Uk
accutane timeline clomid dosage lutenizing hormone short Stopping Zoloft lipitor drug cost lipitor is there a generic Viagra Lawyers
difference between lexapro and celexa
clomid with triplets; Zoloft Alcohol symptoms of zoloft working; lipitor drug cost Prednisone Works prednisone stopped taking side effects difference between lexapro and celexa Cialis Drug accutane timeline symptoms of zoloft working; Generic Propecia lipitor drug cost prednisone stopped taking side effects Watermelon Viagra difference between lexapro and celexa accutane timeline Levitra Commercial symptoms of zoloft working; lipitor drug cost Cialis Overnight prednisone stopped taking side effects
difference between lexapro and celexa
Viagra Purchase accutane timeline can nexium cause tingling of feet Viagra Directions lipitor drug cost prednisone stopped taking side effects Cipro Uses
difference between lexapro and celexa
clomid with triplets; Lipitor Dangers symptoms of zoloft working; cipro and std treatment Buy Acomplia prednisone stopped taking side effects difference between lexapro and celexa Diuretic Lasix accutane timeline symptoms of zoloft working; Zoloft Zoloft lipitor drug cost prednisone stopped taking side effects Lexapro Generic difference between lexapro and celexa accutane timeline Levitra symptoms of zoloft working; lipitor drug cost Acne Accutane prednisone stopped taking side effects difference between lexapro and celexa Cipro Indications accutane timeline symptoms of zoloft working; Viagra Tablets lipitor drug cost lipitor is there a generic Homemade Viagra difference between lexapro and celexa accutane timeline Prednisone Steroid symptoms of zoloft working; cipro and std treatment Cialis Commercial prednisone stopped taking side effects difference between lexapro and celexa Cialis Canada accutane timeline symptoms of zoloft working; Methyl Prednisone lipitor drug cost lipitor is there a generic Herbal Viagra difference between lexapro and celexa accutane timeline Zithromax Cost symptoms of zoloft working; lipitor drug cost Generic Zoloft prednisone stopped taking side effects difference between lexapro and celexa Cheap Cialis accutane timeline symptoms of zoloft working; Clomid lipitor drug cost
prednisone stopped taking side effects
Clomid Twins difference between lexapro and celexa clomid with triplets; Stopping Lipitor symptoms of zoloft working; lipitor drug cost Unprescribed Clomid prednisone stopped taking side effects difference between lexapro and celexa Viagra Strips accutane timeline symptoms of zoloft working; Zithromax Iv lipitor drug cost prednisone stopped taking side effects Buy Levitra difference between lexapro and celexa accutane timeline Viagra England symptoms of zoloft working; lipitor drug cost Prednisone Danger prednisone stopped taking side effects difference between lexapro and celexa Liquid Cialis accutane timeline symptoms of zoloft working; Prednisone Diazepam lipitor drug cost prednisone stopped taking side effects Viagra Pharmacy difference between lexapro and celexa accutane timeline Cytotec Abortion symptoms of zoloft working; lipitor drug cost Cialis Online prednisone stopped taking side effects difference between lexapro and celexa Levitra Website accutane timeline symptoms of zoloft working; Cialis Attorneys lipitor drug cost prednisone stopped taking side effects
Amoxil
difference between lexapro and celexa clomid with triplets; Professional Viagra symptoms of zoloft working; lipitor drug cost Furosemide Lasix prednisone stopped taking side effects difference between lexapro and celexa Accutane Results accutane timeline symptoms of zoloft working; Prednisone Taper lipitor drug cost lipitor is there a generic Cialis Cost difference between lexapro and celexa accutane timeline Akathisia Zoloft symptoms of zoloft working; cipro and std treatment Viagra Professional prednisone stopped taking side effects difference between lexapro and celexa Viagra Substitute accutane timeline symptoms of zoloft working; Discount Levitra lipitor drug cost prednisone stopped taking side effects Cipro Xr difference between lexapro and celexa accutane timeline Buy Cialis symptoms of zoloft working; lipitor drug cost Super Viagra prednisone stopped taking side effects difference between lexapro and celexa Lexapro Antidepressant accutane timeline symptoms of zoloft working; Lexapro Withdrawal lipitor drug cost prednisone stopped taking side effects Generic Cialis difference between lexapro and celexa accutane timeline Zoloft Akathisias symptoms of zoloft working; cipro and std treatment Cialis Paypal prednisone stopped taking side effects difference between lexapro and celexa Natural Viagra accutane timeline symptoms of zoloft working; Zoloft Litigation lipitor drug cost prednisone stopped taking side effects Ultracet difference between lexapro and celexa accutane timeline Cialis Viagra symptoms of zoloft working; lipitor drug cost Using Viagra prednisone stopped taking side effects difference between lexapro and celexa Viagra Stories accutane timeline symptoms of zoloft working; Female Viagra lipitor drug cost prednisone stopped taking side effects Lipitor Generic difference between lexapro and celexa accutane timeline Viagra Timing symptoms of zoloft working; lipitor drug cost Nexium Rebate

prednisone stopped taking side effects

cough and wheezing with lipitor? Cialis Vision accutane timeline symptoms of zoloft working; Cipro Annanicole lipitor drug cost prednisone stopped taking side effects Levitra Woman difference between lexapro and celexa accutane timeline Generic Nexium symptoms of zoloft working; lipitor drug cost Lipitor Headaches prednisone stopped taking side effects difference between lexapro and celexa Chewable Viagra accutane timeline symptoms of zoloft working; Cheap Propecia lipitor drug cost prednisone stopped taking side effects
Canadian Viagra
difference between lexapro and celexa clomid with triplets; Cialis Tadalafil symptoms of zoloft working; lipitor drug cost Prednisone Tapering prednisone stopped taking side effects difference between lexapro and celexa Viagra Alternative accutane timeline symptoms of zoloft working; Discount Viagra lipitor drug cost prednisone stopped taking side effects Snorting Lexapro difference between lexapro and celexa accutane timeline Lipitor Congestion symptoms of zoloft working; lipitor drug cost Generic Viagra

prednisone stopped taking side effects

cough and wheezing with lipitor? Online Cialis accutane timeline symptoms of zoloft working; Generic Levitra lipitor drug cost prednisone stopped taking side effects
Viagra Prescription
difference between lexapro and celexa clomid with triplets; Viagra Women symptoms of zoloft working; cipro and std treatment Levitra Attorneys prednisone stopped taking side effects difference between lexapro and celexa Order Levitra accutane timeline symptoms of zoloft working; Cheap Levitra lipitor drug cost lipitor is there a generic Cialis Prescription difference between lexapro and celexa accutane timeline Cialis Stories symptoms of zoloft working; lipitor drug cost Viagra Patent prednisone stopped taking side effects
difference between lexapro and celexa
Viagra Overnight accutane timeline clomid dosage lutenizing hormone short On Viagra lipitor drug cost prednisone stopped taking side effects Cheapest Viagra difference between lexapro and celexa accutane timeline Nexium Help symptoms of zoloft working; lipitor drug cost Discount Cialis prednisone stopped taking side effects difference between lexapro and celexa Lasix California accutane timeline symptoms of zoloft working; Buying Cialis lipitor drug cost prednisone stopped taking side effects Buying Viagra difference between lexapro and celexa accutane timeline Lipitor Constipation symptoms of zoloft working; lipitor drug cost Buying Nolvadex prednisone stopped taking side effects difference between lexapro and celexa Legal Viagra accutane timeline symptoms of zoloft working; Fake Viagra lipitor drug cost prednisone stopped taking side effects Buspar Zoloft difference between lexapro and celexa accutane timeline Lipitor Zocor symptoms of zoloft working; lipitor drug cost Cheapest Cialis prednisone stopped taking side effects difference between lexapro and celexa Buy Lipitor accutane timeline symptoms of zoloft working; Clomid Unprescribed lipitor drug cost lipitor is there a generic Cialis Generic difference between lexapro and celexa accutane timeline Clomid Success symptoms of zoloft working; cipro and std treatment Cipro Antibiotic prednisone stopped taking side effects difference between lexapro and celexa New Viagra accutane timeline symptoms of zoloft working; Lexapro Medication lipitor drug cost lipitor is there a generic Cialis Uk difference between lexapro and celexa accutane timeline Zoloft Breastfeeding symptoms of zoloft working; lipitor drug cost Stopping Lexapro prednisone stopped taking side effects difference between lexapro and celexa Generic Lipitor accutane timeline symptoms of zoloft working; Generic Lexapro lipitor drug cost prednisone stopped taking side effects Cheap Lipitor
difference between lexapro and celexa
clomid with triplets; Levitra Online symptoms of zoloft working;

lipitor drug cost

Viagra Cialis prednisone stopped taking side effects cough and wheezing with lipitor? Acomplia accutane timeline symptoms of zoloft working; India Viagra lipitor drug cost prednisone stopped taking side effects Oral Prednisone difference between lexapro and celexa accutane timeline Online Viagra symptoms of zoloft working; lipitor drug cost Cytotec prednisone stopped taking side effects difference between lexapro and celexa Accutane Attorneys accutane timeline symptoms of zoloft working; Prednisone Dogs lipitor drug cost prednisone stopped taking side effects Aventis Acomplia difference between lexapro and celexa accutane timeline Prednisone Drug symptoms of zoloft working; lipitor drug cost Lipitor Coupon prednisone stopped taking side effects difference between lexapro and celexa Purchase Viagra accutane timeline symptoms of zoloft working; Propecia Baldness lipitor drug cost prednisone stopped taking side effects Viagra Agonists difference between lexapro and celexa accutane timeline Lipitor Patent symptoms of zoloft working; lipitor drug cost Viagra Soft prednisone stopped taking side effects
difference between lexapro and celexa
Buy Viagra accutane timeline clomid dosage lutenizing hormone short Prednisone Lawsuit lipitor drug cost
prednisone stopped taking side effects
Zoloft Generic difference between lexapro and celexa prednisone menstrual cycle Cipro Lawsuits symptoms of zoloft working; cipro and std treatment Levitra Medicine prednisone stopped taking side effects difference between lexapro and celexa Geberic Nexium accutane timeline symptoms of zoloft working; Nolvadex lipitor drug cost prednisone stopped taking side effects Lasix Drug difference between lexapro and celexa accutane timeline Propecia symptoms of zoloft working; lipitor drug cost Lasix Online

prednisone stopped taking side effects

cough and wheezing with lipitor? Levitra Sale accutane timeline symptoms of zoloft working; Acomplia Online lipitor drug cost prednisone stopped taking side effects
Nexium Protonix
difference between lexapro and celexa prednisone menstrual cycle Viagra Discount symptoms of zoloft working; lipitor drug cost Cheap Viagra prednisone stopped taking side effects difference between lexapro and celexa
Viagra Oral
accutane timeline clomid dosage lutenizing hormone short Accutane Seattle lipitor drug cost prednisone stopped taking side effects Viagra Buy difference between lexapro and celexa accutane timeline Purepac Prednisone symptoms of zoloft working; lipitor drug cost Zoloft prednisone stopped taking side effects difference between lexapro and celexa Viagra Cheap accutane timeline symptoms of zoloft working; Rimonabant lipitor drug cost prednisone stopped taking side effects Zoloft Withdrawal difference between lexapro and celexa accutane timeline Isotretinoin Accutane symptoms of zoloft working; lipitor drug cost Cialis Pricing prednisone stopped taking side effects difference between lexapro and celexa Buy Clomid accutane timeline symptoms of zoloft working; Nexium Cost lipitor drug cost lipitor is there a generic Cialis Propafenone difference between lexapro and celexa accutane timeline Soft Cialis symptoms of zoloft working; lipitor drug cost Viagra Jelly prednisone stopped taking side effects difference between lexapro and celexa Prices Cialis accutane timeline symptoms of zoloft working; Viagra Attorneys lipitor drug cost prednisone stopped taking side effects Ladies Viagra difference between lexapro and celexa accutane timeline Viagra Equivalent symptoms of zoloft working; lipitor drug cost Cipro prednisone stopped taking side effects difference between lexapro and celexa Accutane Lawyers accutane timeline symptoms of zoloft working; Pt5 Prednisone lipitor drug cost prednisone stopped taking side effects Zithromax Bronchitis difference between lexapro and celexa accutane timeline Viagra Pill symptoms of zoloft working; lipitor drug cost Women Viagra prednisone stopped taking side effects difference between lexapro and celexa Nexium Reactions accutane timeline symptoms of zoloft working; Viagra Danger lipitor drug cost lipitor is there a generic
Viagra 100mg
difference between lexapro and celexa clomid with triplets; Zoloft Abuse symptoms of zoloft working; cipro and std treatment Order Viagra prednisone stopped taking side effects difference between lexapro and celexa Prednisone Alcohol accutane timeline symptoms of zoloft working; Lasix lipitor drug cost prednisone stopped taking side effects Mexican Viagra difference between lexapro and celexa accutane timeline Nexium Generic symptoms of zoloft working; lipitor drug cost Lipitor 45 prednisone stopped taking side effects difference between lexapro and celexa Lipitor accutane timeline symptoms of zoloft working; Buy Propecia lipitor drug cost prednisone stopped taking side effects Zoloft Pricing difference between lexapro and celexa accutane timeline Order Cialis symptoms of zoloft working; lipitor drug cost Sublingual Cialis

prednisone stopped taking side effects

cough and wheezing with lipitor? Lexapro Medicine accutane timeline symptoms of zoloft working; Viagra Generic lipitor drug cost prednisone stopped taking side effects Warfarin Zoloft difference between lexapro and celexa accutane timeline Canine Prednisone symptoms of zoloft working; lipitor drug cost

Cialis Cheap

prednisone stopped taking side effects cough and wheezing with lipitor? Clomid Steroids accutane timeline symptoms of zoloft working; Prednisone Laryngitis lipitor drug cost prednisone stopped taking side effects Prednisone difference between lexapro and celexa accutane timeline Cialis 20mg symptoms of zoloft working; lipitor drug cost Generic Accutane prednisone stopped taking side effects difference between lexapro and celexa Pfizer Viagra accutane timeline symptoms of zoloft working; Clomid Pdr lipitor drug cost prednisone stopped taking side effects Chinese Viagra difference between lexapro and celexa accutane timeline Prednisone 20mg symptoms of zoloft working;