我很难从主题中的上传文件夹中引用图像。我怎样才能调用那个文件夹?
这是我到目前为止所尝试的:
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'acme_product',
array(
'labels' => array(
'name' => __( 'Products' ),
'singular_name' => __( 'Product' ),
'add_new' => __( 'Add Product' ),
'add_new_item' => __( 'Add New Product' ),
'edit' => __( 'Edit' ),
'edit_item' => __( 'Edit Product' ),
'new_item' => __( 'New Product' ),
'view' => __( 'View Product' ),
'view_item' => __( 'View Product' ),
'search_items' => __( 'Search Products' ),
'not_found' => __( 'No Products found' )
),
'public' => true,
'has_archive' => true,
'menu_icon' => get_template_directory_uri() . '/uploads/2013/11/product.png',
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions' )
)
);
}
但问题是,它没有显示在我的仪表板中。有任何想法吗?提前致谢。