aubreypwd / wpkickstart

A great way to kickstart a new WordPress plugin or project.
9 stars 0 forks source link

Allow multiple word classes with a - #2

Closed aubreypwd closed 6 years ago

aubreypwd commented 6 years ago

class-app.php#L112

Here, if you create a class like, Edit_Posts you have to create a file like class-edit_posts.php which should be class-edit-posts.php.

$file = 'class-' . strtolower( str_replace( '_', '-', end( $parts ) ) ) . '.php';

...is better.