admin管理员组

文章数量:1336398

<?php

function currentYear(){
    return date('Y');
}

function reisblog_thema_support(){
    //Dynamische titel wordpress
    add_theme_support('title-tag');
    // Thumbnail bij een post
    add_theme_support('post-thumbnails');
);
}

add_action('after_theme_setup', 'reisblog_thema_support');


function reisblog_menus(){
    $locations = array(
        'primary' => "menu bovenaan",
    );
    register_nav_menus($locations);
}

add_action('init', 'reisblog_menus');


//Stylesheet enz
function reisblog_styles(){
    wp_enqueue_style('reisblog-css', get_template_directory_uri() . "/1htmlreisblog/css/style.css", array('reisblog-bulma'), '1.0', 'all');
    wp_enqueue_style('reisblog-bulma', get_template_directory_uri() . "/1htmlreisblog/css/bulma.css", array(), '1.0', 'all');
    wp_enqueue_style('reisblog-fa', get_template_directory_uri() . ".7.0/css/font-awesome.min.css", array(), '4.7.0', 'all');
    wp_enqueue_style('reisblog-fonts', get_template_directory_uri() . ";, array(), '1.0', 'all');
}

add_action('wp_enqueue_scripts', 'reisblog_styles');
?>

Why is this not working?

本文标签: Can39t add thumbnail theme support