WP Resume Builder

User & Developer friendly resume builder.

Author:paratheme (profile at wordpress.org)
WordPress version required:4.1
WordPress version tested:4.2.4
Plugin version:1.0.0
Added to WordPress repository:14-07-2015
Last updated:12-08-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:http://paratheme.com
Total downloads:4 131
Active installs:300+
plugin download
Click to start download

WP Resume Builder allows you to create your perfect Resume/CV/Biodata via WordPress, add your own fields to create resume via addon support.

WP Resume Builder by http://paratheme.com

Plugin Features

  • Filterable input fields.
  • Resume thumbnail.
  • Predefined fields for Education, Experiences, Contact Info, Award, Skill, Social, Interest, Language, Portfolio.
  • Graphical(percentage bar) represantation for skill values.
  • Ajax add more section entry.

Extensible support

you can extend resume input fields by filter hook, we have following filter hook for resume admin input please see the screenshot for understand filter map

https://ps.w.org/wp-resume-builder/assets/screenshot-2.png

  • wp_rb_data_args
  • wp_rb_filter_sections
  • wp_rb_filter_sections_args
  • wp_rb_section_properties

for eaxample you can extend resume section by filter hook wp_rb_filter_sections() as follows in the same filter you can also remove any section by unset().

add_filter('wp_rb_filter_sections', 'wp_rb_sections_add');

function wp_rb_sections_add($sections)
    {
        $sections_new = array_merge($sections, array("tour"=>"Tour"));
        
        //unset($sections_new['social']); // remove sections ex: social
        
        return $sections_new;
    }

Please see the demo addon inside plugin folder "demo-addon" find the zip (wp-resume-builder-addon-filters.zip) file you can install as plugin and ready to customize.

Extensible resume themes - (Premium Features)

WP Resume Builder also support extend theme via addon support by filter hook, following filter hook are are using for creating theme

  • wp_rb_themes
  • wp_rb_themes_dir
  • wp_rb_themes_url

Please see the sample addown inside plugin folder "demo-addon" (wp-resume-builder-addon-themes.zip) you can install as plugin and ready to customize.