我已经在WordPress仓库上传了一个主题,但评论指出了主题中的一些问题。我已经修复了所有这些问题,并更新了我的主题版本。然后WordPress给了我另一个车票号码。但它没有更新,也没有最近五天的更新。谁能告诉我问题和解决方案是什么?
我需要帮助的页面:https://themes.trac.wordpress.org/ticket/83941
谢谢。
发布于 2020-05-16 05:33:43
欢迎来到Stack Overflow!不幸的是,这不是这个特定问题的正确位置。请阅读https://stackoverflow.com/help/how-to-ask和https://stackoverflow.com/help/minimal-reproducible-example
但为了不让你失望,我看了你的机票链接:
你有什么问题,不知道如何解决这个需求吗?如果你认为你做的一切都是对的,你可以给我们看一些代码。
如果你不知道该怎么做:
在您的functions.php中或主题中的任何位置,您正在使用多个文本域。这可能会有所帮助:https://developer.wordpress.org/themes/functionality/internationalization/#text-domain只为您的主题使用一个文本域。
您的主题uri是一个公共网页,用户可以在其中找到有关主题的更多信息。所以你的主题的style.css应该以下面这样的内容开头:
/*
Theme Name: Twenty Seventeen
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with immersive featured images and subtle animations. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/更多信息:https://developer.wordpress.org/themes/basics/main-stylesheet-style-css/
您正在使用Underscore_s starter主题,并在其上构建您的主题。你应该在你的主题信息中明确这一点。
您还在使用属于其他人的图像。显然,你不能使用像素图像,因为他们说“是不允许的”。看一看无许可证的图像,并获得复制和销售图像的许可证。
希望这能对你有所帮助。
https://stackoverflow.com/questions/61792999
复制相似问题