# Backdrop Core: A WordPress Theme Framework Backdrop Core is a framework for developing WordPress Themes. The main objective of this Backdrop Core Framework is to help organize features that doesn't need to be repeated, therefore, a Framework is introduced to help developers without the need to write codes and focus on theme itself. ## Requirements - WordPress 4.9.6 or higher - PHP 5.6 or higher ( PHP 7.0 is recommended ) - Composer # Documentations The documentations is under construction and will be available when I finished writing up everything I need. ## Installation Since Backdrop uses composer, we will use composer to install the framework inside of the directory you are working with.
composer require benlumia007/backdrop-core
The next step is to add the autload to your functions.php within your working directory.
if ( file_exists( get_parent_theme_file_path( 'vendor/autoload.php' ) ) ) {
	require_once( get_parent_theme_file_path( 'vendor/autoload.php' ) );
}