• Hi,

    I was wondering if there is a way to rename the sidebars that are in the admin panel under Appearance/Widgets. I have created a few sidebars (13) and I would like to rename them for which pages they are for, instead of just Sidebar 1, Sidebar 2, etc..

    Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Just give them a name when you register them:

    register_sidebar(
        array(
          'name' => 'GlobalTopSidebar',
          'before_widget' => '<li id="%1$s" class="widget %2$s">',
          'after_widget' => '</li>',
          'before_title' => '',
          'after_title' => '',
        )
      );

    Hi Ceeeeg,
    I am developing a plugin for this exact scenario, I will be releasing it as beta early next week, if you want to be a tester before I offer it to extend let me know, here is a post I have just made with an overview.
    You see a label “Adsense Block” the system sees sidebar3, a theme like this one I made earlier.

    Contact me from my website if you are interested.

    I cannot split out the bit you want as there are over 1,300 lines of code to make this plugin ??
    David

    @adeptris, is your plugin automatically creating a sidebar per page? I’m not clear on that. Sounds interesting though.

    Hi apljdi,
    if we take the website in this link the standard layout and how I would extend it.

    I am not a designer I am a software developer, so I will create the default look in Artisteer, this will produce a basic two sidebar, small footer, basic menu and no category menu website.

    load the theme on my local wordpress, then from my plugin, the first form is management, I enter the sheet width and details of the two sidebars, then extend enter names for the other two sidebars and the width, options for 5 full 100% width content areas, two 50% and one 33%, then the dynamic footer bars 4 widgets areas.

    Next screen generates a css file based on the management details, this will not happen unless the information is correct, copy the css text, go to admin > themes and edit, the plugin comes with a folder and four files that go in your theme folder, from the editor open up drflayout.css and paste in the css text.

    next screen is where you choose the elements to generate a template, so for the home page I may add content panes 1 to 5, and any combinations of sidebars there are 15 different sidebar layouts,that you can add differen content panes to, this screen also generates the template code, copy paste and save the template, repeat as many times as you want with different combinations.

    david (phew!)

    Interesting plugin David. So where’s the plugin download link so we can test your plugin?

    Hi mercime,
    it is due for beta release early next week, for local testing and not production or commercial use, until the official release!

    After over 1300 lines of code it will get to beta soon!

    David

    Interesting. Be sure to post a reminder when that beta comes out.

    “1300 lines of code it will get to beta soon”
    Whoa. That’s seriously intriguing. Looking forward to your beta release.
    Cheers.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Is there a way to rename the sidebars in the admin panel?’ is closed to new replies.