Playing wordpress theme: Sidebar problem

opensource

New Member
Hi
I have used the theme starker which is the blank naked theme.
They have their latest ver. as 2012.
I have successfully designed a theme using their old version.
Just a thought if anyone here too have used their new version.
Anyway, i have a problem about the sidebar. It successfully appears
in my page but in my dashboard Appearance->Widget, it's not visible.
I wonder why it didn't appear. I just want to remove the features from
my sidebar that appears in my page like the blogroll, categories, archives
and page links etc. And i want to replace it a new twitter widgets.
But the problem is, i can't modify the visible sidebar in my pages.
In my funtion.php, there is widget visible but in my dashboard but none
of my present sidebar from pages appears in this current sidebar that

my line of codes is
Code:
function arphabet_widgets_init() {

	register_sidebar( array(
		'name' => 'Home right sidebar',
		'id' => 'home_right_1',
		'before_widget' => '<div>',
		'after_widget' => '</div>',
		'before_title' => '<h2 class="rounded">',
		'after_title' => '</h2>',
	) );
}
add_action( 'widgets_init', 'arphabet_widgets_init' );
?>

Then in my wp index.php, i call the sidebar for my theme.
Code:
<?php get_sidebar(); ?>

Any advice guys on what to add at the line that my widgets sidebar will be visible. I feel that there is something missing.

I'll attach screen shot so you may understand what i want


And this is my page which has the visible sidebar
 
Last edited:

opensource

New Member
Problem solve . I already have figure it out. There is only one thing that I would like to know. Does anyone knows how to link one of the menu that will point into index.php
or main page ? For example I have created 5 menu links then one of my link will point
into home page or will link to home page. Does anyone can give an advice. :)
Thanks advance.
 

opensource

New Member
Problem solved. I forgot that you can create a customize link in the dashboard. ^_^ Just one thing. Is there any Facebook plugin that if you post in in Facebook timeline, it will also display too to you wp pages. ?
 

amalayer

New Member
Problem solved. I forgot that you can create a customize link in the dashboard. ^_^ Just one thing. Is there any Facebook plugin that if you post in in Facebook timeline, it will also display too to you wp pages. ?

Good to know you've already solved the problem. I believe you can link that one to facebook as well as to twitter if you want to.
 
Top