Material Design Lite: Is Installation on WordPress possible?

Random and probably dumb question-can Material-Design-Lite blog template be fully installed on WordPress? Downloaded the full template from http://www.getmdl.io/templates/blog/index.html and wondering how to use the entire file….

Thanks!

Related posts

4 comments

  1. Yes, you can absolutely make a WordPress template using MDL. Helping you do that though… is a bit of a big task. Try looking for help around the web on just building WordPress templates, then when are you working with HTML, use MDL classes and necessary attributes for components.

  2. Yes. You’ll probably want to do so by creating a new theme. The MDL templates provides static HTML, CSS, and Javascript. WordPress requires PHP to dynamically add your content. You could approach this from two directions: modifying an existing theme or blank starter-theme to work with the CSS and Javascript, or adding the necessary php to the MDL HTML files (and making them php files).

    You could also potentially add the MDL css and javascript through a child theme or plugin to use only select portions of it if you’re not looking for a MDL Theme. At a minimum you’ll need to add classes to the elements you want to affect, and watch out for potential conflicts.

    Not sure of your level of experience, but here are some starting points.

    WordPress Codex on Theme Development

    A tutorial on creating a theme from static html

    A tutorial on including your css and javascript files

Comments are closed.