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 1021439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:18:40+00:00 2026-05-16T11:18:40+00:00

I have a menu, when the user clicks on any menu item, I want

  • 0

I have a menu, when the user clicks on any menu item, I want to take them to the same page, but I want to style the page differently depending on the menu item…for ex: change the background color to be different.
What’s the best way to do this? I was thinking that when they click on a menu item, a variable can be set or a session variable can be set.

Is there an easier way to do this? Does WordPress have anything built into the architecture to make this easy?

  • 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-16T11:18:41+00:00Added an answer on May 16, 2026 at 11:18 am

    Don’t use the session for this. Since HTTP is a stateless protocol, you should avoid using session to the greatest lengths possible. Since the user is clicking on a link, it only makes sense making that link convey the information you’re after. Just pass any data you want in the URL, e.g. as a a query string parameter:

    1. http://example.com/page_x?bgcolor=1
    2. http://example.com/page_x?bgcolor=2
    3. http://example.com/page_x?bgcolor=3

    Then you can just query for this in the page template like so:

    <?php
      /*
      Template Name: Varying Background Color Template
      */
    
      $bgcolor = $_GET['bgcolor'];
    
      switch ($bgcolor) {
        case 1:
          // Change the background to color 1
          break;
    
        case 2:
          // Change the background to color 2
          break;
    
        case 3:
          // Change the background to color 3
          break;
      }
    ?>
    

    If you think query string parameters are ugly, you can use path info instead, but this requires you to create a special case rewrite rule that makes the path info “invisible” to WordPress so it doesn’t think it’s the slug of a page. Whether you want or need this depends on how your permalink configuration in WordPress is.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a menu with an animation going on, but I want to disable
I have a ClickOnce environment like this: \\Fileserver\ClickOnceApps\App1.application C:\Documents and Settings\user\Start Menu\Programs\publisher\app1.appref-ms My understanding
I have an ascx component, that holds two-level menu, because there are several user
I have a menu div that I want to slide down so it's always
I have a menu of product brands that I want to split over 4
I have a menu of report links in my master page. I need to
I have a asp:menu object which I set up to use a SiteMapDataSource but
I want to have a menu that when I click replaces the content of
I have added a menu item in ECB of document of document library. On
I have a menu running off of a sitemap which one of the SiteMapNode

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.