WordPress自定义主题未出现在仪表板中

因此, 我是wordpress的新手, 我只是在wp-content / themes / mytheme中为我的wordpress项目创建了一个自定义主题, 我在新主题中添加了index.php, blog.css和style.css文件, 但是当我转到我的仪表板中的主题新创建的主题未显示为选项。我还想念什么?谢谢
style.css

/* Theme Name: Start WordPress Theme URI: http://wordpress.org/themes/startwordpress Author: Me Author URI: http://wordpress.org/ Description: The Start WordPress theme is my first custom theme. Version: 1.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: bootstrap, black, brown, orange, tan, white, yellow, light, one- column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post- formats, rtl-language-support, sticky-post, translation-ready Text Domain: startwordpressThis theme, like WordPress, is licensed under the GPL . Use it to make something cool, have fun, and share what you've learned with others. */

#1纯娱乐。不要添加blog.css。
只需使用style.css和基本文件, 直到可以看到它。在进行故障排除时-只需使用index.php和style.css-并保持整洁。
https://codex.wordpress.org/Theme_Development#Basic_Templates
/* Theme Name: Example theme name Theme URI: n/a Author: you Author URI: n/a Description: example description... Version: 1.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: example-tag */

当主题不显示时, 主题管理中通常会显示以下错误。
#2WordPress主题除了图像和JavaScript文件外, 通常还包括三种主要类型的文件。
1。名为style.css的样式表, 它控制网站页面的呈现(视觉设计和布局)。
2 .WordPress模板文件, 用于控制网站页面从WordPress数据库生成要在网站上显示的信息的方式。
3。作为WordPress主题文件的一部分的可选函数文件(functions.php)。
范例:-
按照wp-content> 主题的路径进入主题文件夹。你会看到WordPress默认主题-25、24、13、13和index.php。为你的主题创建一个新目录;我叫我的startwordpresspress。
/* Theme Name: Start WordPress Author: Tania Rascia Description: Bootstrap Blog template converted to WordPress Version: 0.0.1 Tags: bootstrap */

只需点击此链接https://www.taniarascia.com/developing-a-wordpress-theme-from-scratch/
#3检查主题文件是否具有正确的文件权限和所有权。
CD到网站的根目录, 然后可以使用以下命令设置所有权(如果服务器在Ubuntu上运行Apache):chown www-data:www-data -R *
或对于CentOS上的Apache:chown apache:apache -R *
和权限:
找 。 -类型d -exec chmod 755 {} \; #更改目录权限
【WordPress自定义主题未出现在仪表板中】找 。 -类型f -exec chmod 644 {} \; #更改文件权限

    推荐阅读