Hi, I need to create a ELEMENT that will be placed inside some pages (in APPAREANCE -> ELEMENTS) . Inside that ELEMENT I need to add a WIDGET. Is that possible?
I have also tried creating this
function woo_custom_sidebar() {
register_sidebar(array(
‘name’ => ‘Widget para Buscador de Vehiculos’,
‘id’ => ‘wooshopwidget’,
‘description’ => ‘Widget para Buscador de Vehiculos’,
‘before_widget’ => ‘
‘,
‘after_widget’ => ‘
‘,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
)
);
}
add_action( ‘widgets_init’, ‘woo_custom_sidebar’ );
And then inserted this CODE inside the ELEMENT:
<?php if(!dynamic_sidebar(‘wooshopwidget’)) ; ?>
But it doesnt work.
Thanks
Francisco