Is it legally possible to obtain the css of the wordpress design template and incorporate it into other web applications?

Asked 1 years ago, Updated 1 years ago, 90 views

There are many different wordpress templates, and they have a great design. I felt that there are many things including free and paid.

Also, when I looked in this directory, there were csss and so on, and I wondered if I could use them.
wp-content/themes/

I am not good at designing from scratch with css, and there is a limit to configuring bootstrap, so I wish I could re-use the design template used in wordpress well.

1) Is there no problem using this kind of design template?
(I think it's case by case)

2) Where should I look to decide on those decisions?
I don't know if it's a copy light or a trademark, but I'm not sure.
Especially if I bought it for a fee, this one? So I wondered how I could use it.

3) If I could successfully retrieve the design template, would it be possible to port it to a web application based on PHP, Ruby, Python, etc.?

Thank you for your cooperation.

php css wordpress

2022-09-30 19:45

1 Answers

In conclusion, Yes
(However, you may need your own customization)

2) Where should I look to decide these decisions?

Look at the license to make a decision

About Licenses

The WordPress theme inherits the principle GPL.However, the inheritance of GPL is required only for PHP, so depending on the paid theme, CSS and images may not be the same, so please check them at the time of purchase.
For example, GPLs are not limited in usage, so they can be used more than WordPress.

For example, all themes listed in the official directory are 100% GPL.

If you are not sure, please check with the seller or distributor.

example of themeforest
Themeforest Example

3) If I could successfully retrieve the design template, would it be possible to port it to a web application based on PHP, Ruby, Python, etc.?

I think this is a case by case...

The theme of WordPress is basically tailored to WordPress' spitting class.
In other words, it would be useful if you could create a WP site with that theme and build an application to spit out HTML similar to that site.

Depending on the theme, it may come with an original source that uses preprocessors such as SCSS, so it may work well.

Note: WP Theme Configuration

WP themes consist mainly of the following elements

  • CSS (such as style.css)
  • PHP functions for themes (files such as functions.php or /inc/template-tags.php)
  • PHP Template
  • JavaScript files (even if not)
  • Image
  • Translation files (out of theme these days...)

WP themes are mostly made for WP, so that's about...


2022-09-30 19:45

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.