Reputation: 1113
I've built a website using django, and now I want to build a blog for my website at url domain.com/blog. I need to create it in wordpress and then import it to django, using the wordpress theme.
The different solutions I found on the web are to import the data from WP to django, but how do I use the WP theme in my django template? or do I have to make my own templates (which I don't want)?
Also, should I use wordpress in the first place(its SEO pluggins are quite strong) or should I use a django blogging app instead?
very confused about it, any help would be great. Thanks.
Upvotes: 3
Views: 4225
Reputation: 14939
how do I use the WP theme in my django template?
You have to extract the base HTML/CSS/JS(without any PHP code) and use them to create a Django template. No other way.
or do I have to make my own templates (which I don't want)?
You have to. Wordpress is a PHP framework and it's templates are incompatible with Django, which is a Python framework.
Also, should I use wordpress in the first place(its SEO pluggins are quite strong) or should I use a django blogging app instead?
Questions that start with Should always have controversial answers. You should research and choose what you need. No one is here to research for others.
Upvotes: 11