开发者 | wpamanuke |
---|---|
更新时间 | 2019年7月3日 14:40 |
PHP版本: | 5.6 及以上 |
WordPress版本: | 5.2.2 |
版权: | GPLv2 or later |
Here it is Resume CV Documentation
Create new folder in your resume plugin , just copy themes in /resume-cv/themes/ and make it like this /your-resume-plugin/themes/ and do modification which you need.
In your main plugin functions. For example your theme name myresumetheme , in you plugin function just add this code.
function resumecvsample_theme_filter_add($resumecv_theme) {
$resumecv_theme[plugin_dir_path( __FILE__ ) . 'themes/myresumetheme'] = 'myresumetheme';
return $resumecv_theme;
}
add_filter('resumecv_theme_filter', 'resumecvsample_theme_filter_add');