merhaba
wordpress bileşenini temanın istediğimiz bir yerinde göstermeye yarayan kod ya da yöntem var mı?
function my_custom_sidebar() {
register_sidebar(
array (
'name' => __( 'Custom' ),
'id' => 'custom-side-bar',
'description' => __( 'Custom Sidebar Açıklama' ),
'before_widget' => ' ",
'before_title' => '',
'after_title' => '
',
)
);
}
add_action( 'widgets_init', 'my_custom_sidebar' );