wordpress主题提交的过程中对于版权的声明是非常严格的,如果你之前没有提交过,而且不熟悉这方面的东西,会感到很无措的,因为根本不知道怎么做。
wordpress主题的每个PHP文件、图片、脚本、CSS、字体等资源,全部都需要声明遵循的license。如果你不声明,那么你不可能通过的,即使知道是你做的,那也得声明出来。
下面是一个比较好的声明方式:
== Copyright and License == Advertica Lite WordPress Theme, Copyright 2014 SketchThemes. Advertica Lite WordPress theme is distributed under the terms of the GNU GPL. /*========= Credits =========*/ --------------------- Script Credits "Advertica Lite WordPress Theme" --------------------- * The script cbpAnimatedHeader.js v1.0.0 is licensed under the MIT license. * The script jquery.easing.1.3.js v1.3.0 is licensed under the BSD License. * The script hoverIntent.js is licensed under the MIT License. * The script superfish.js v1.7.4 is licensed under the MIT and GPL. * The script waypoints.min.js is licensed under the MIT. --------------------- Font Credits "Advertica Lite WordPress Theme" --------------------- * Icon Set: FontAwesome is licensed under MIT License * Google Webfonts: Open Sans is licensed under Apache License, version 2.0. --------------------- Image credits "Advertica Lite WordPress Theme" --------------------- * icn_slides.png(https://www.iconfinder.com/icons/16450/slide_icon#size=16). * icn_portfolio.png(https://www.iconfinder.com/icons/101761/bag_briefcase_icon#size=16). * custom_Person-group.png(https://www.iconfinder.com/icons/34626/friends_group_people_persons_users_icon#size=128). * All other images were created by SketchThemes as per requirement.
在主题的style.css里面需要添加GPL的license地址:
License: GNU General Public License v2.0 License URI: http://www.gnu.org/licenses/gpl-2.0.html
如果英文好的话,可以浏览这里:http://make.wordpress.org/themes/guidelines/guidelines-license-theme-name-credit-links-up-sell-themes/
2014-04-16 12:03