我正在創建一個WordPress主題,並使用以下代碼插入添加功能圖像的功能,但它不起作用。沒有錯誤,但每當我嘗試上傳圖片時,它都會卡在嘎吱嘎吱聲中,並且永遠不會完成,有時會出現錯誤,稍後再嘗試發生一些錯誤。創建wordpress主題的問題
//theme support
function wpb_theme_setup(){
//nav menu
register_nav_menus(array(
'primary' => __('Primary Menu')
));
//feature images on posts
add_theme_support('post-thumbnails');
}
//for the above function to work we need tocreate an addaction function, which lets us choose a hook to run it
//the one we want is aftr set up theme
add_action('after_setup_theme','wpb_theme_setup');
請糾正我是否做錯了什麼 謝謝
請不要添加無關標籤。雖然Wordpress是用'php'編寫的,但這不是'php'的問題。 – Trix
我很抱歉,我是新來的。 – user2296604