Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6630187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:21:59+00:00 2026-05-25T22:21:59+00:00

Building a WordPress options panel. One of the things it does is allow users

  • 0

Building a WordPress options panel. One of the things it does is allow users to pick custom colors. I use a default stylesheet, then call styles for custom inputs. However, I simply insert this in the header instead of having these custom values reside in their own stylesheet (since I need to call the user’s choice via PHP).

As an example, I have code in my header like this:

<style type="text/css">
p a { <?php echo get_option('to_custom_css'); ?> }
</style>

And in my functions:

array( "name" => "Custom CSS",  
    "desc" => "Want to add any custom CSS code? Put in here, and the rest is taken care of. This overrides any other stylesheets. eg: a.button{color:green}",  
    "id" => $shortname."_custom_css",  
    "type" => "text",  
    "std" => ""),    

How would I have this reside in its own stylesheet while still using <?php echo get_option('to_custom_css'); ?> to call the users input?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T22:22:00+00:00Added an answer on May 25, 2026 at 10:22 pm

    You can create a stylesheet in PHP, but need to set the Content-type header to text/css. In your HTML:

    <head>
      <link rel="stylesheet" type="text/css" href="user-styles.php" />
      <!-- ... -->
    

    The in user-styles.php:

    <?php
    
    header('Content-type: text/css');
    
    ?>
    /*  now put your css here : */
    
    p a { 
        <?php echo get_option('to_custom_css'); ?> 
    }
    
    /* and so on... */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm building a custom options panel in Wordpress. One of the options I'd like
I'm building a website and I've decided to use wordpress for the totally public
I'm building a site with wordpress, and when I use the date() function on
I'm building a theme options page for my WordPress theme and I would like
I'm building a large custom search for a wordpress site that is functioning as
I am busy building a small theme options page for one of clients and
I'm building wordpress blog themed in flash and I've already run into one problem.
I am building a child theme in Wordpress that needs some custom functionality (for
I am building a new WordPress theme using register_post_type to create a custom post
I'm building an authors page for my Wordpress blog that lists all the current

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.