Boa Tarde,
Estava e tentar alterar os widgets para o rodapé da página e fiz algo de errado na programação do function.php.
Agora está a dar erro. Voltei a colocar o código que estava, mas o erro continua.
A mensagem que aparace é a seguinte:
d styles. */ function match_scripts() { /** * Enqueue JS files */ // Modernizr wp_enqueue_script( 'match-modernizr', get_template_directory_uri() . '/js/modernizr.js', array( 'jquery' ), '2.7.1', true ); // Superfish Menu wp_enqueue_script( 'match-hover-intent', get_template_directory_uri() . '/js/hover-intent.js', array( 'jquery' ), 'r7', true ); wp_enqueue_script( 'match-superfish', get_template_directory_uri() . '/js/superfish.js', array( 'jquery' ), '1.7.4', true ); // Toogle Menu wp_enqueue_script( 'match-slicknav', get_template_directory_uri() . '/js/slicknav.js', array( 'jquery' ), '1.0', true ); // Fitvids wp_enqueue_script( 'match-fitvids', get_template_directory_uri() . '/js/fitvids.js', array( 'jquery' ), '1.0.3', true ); // Comment Reply if ( is_singular() && get_option( 'thread_comments' ) && comments_open() ) { wp_enqueue_script( 'comment-reply' ); } // Keyboard image navigation support if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'match-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20140127', true ); } // Custom Script wp_enqueue_script( 'match-custom', get_template_directory_uri() . '/js/custom.js', array( 'jquery' ), '1.0', true ); /** * Register Google Fonts */ $protocol = is_ssl() ? 'https' : 'http'; /* translators: If there are characters in your language that are not supported by Raleway, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Raleway font: on or off', 'match' ) ) { wp_register_style( 'match-raleway', $protocol . '://fonts.googleapis.com/css?family=Raleway' ); } /* translators: If there are characters in your language that are not supported by Roboto, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'match' ) ) { wp_register_style( 'match-roboto', $protocol . '://fonts.googleapis.com/css?family=Roboto:400,300italic,300,400italic,100,100italic' ); } /** * Enqueue CSS files */ // Bootstrap wp_enqueue_style( 'match-bootstrap', get_template_directory_uri() . '/css/bootstrap.css' ); // Fontawesome wp_enqueue_style( 'match-fontawesome', get_template_directory_uri() . '/css/font-awesome.css' ); // Theme Stylesheet wp_enqueue_style( 'match-style', get_stylesheet_uri() ); // Google Fonts wp_enqueue_style( 'match-raleway' ); wp_enqueue_style( 'match-roboto' ); } add_action( 'wp_enqueue_scripts', 'match_scripts' ); /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php';
Não tenho conhecimentos de programação. Estava a seguir um tutorial e agora não sei corrigir...
Alguém me consegue ajudar?
Este era o código original:
/**
* Register widgetized area and update sidebar with default widgets.
*/function match_widgets_init() {
// Widget Areas
register_sidebar( array(
'name' => __( 'Main Sidebar', 'match' ),
'id' => 'sidebar-1',
'before_widget' => '
'after_widget' => '', 'before_title' => '
',
'after_title' => '',
) );
O meu site é www.beblossom.pt
Obrigada.