All In One Schema Rich Snippets - Version 1.1.3

Version Description

  • Enhancement : Network Activation
Download this release

Release Info

Developer brainstormforce
Plugin Icon 128x128 All In One Schema Rich Snippets
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

Files changed (3) hide show
  1. functions.php +2 -2
  2. index.php +4 -4
  3. readme.txt +1 -29
functions.php CHANGED
@@ -24,7 +24,7 @@ add_action( 'wp_head', 'add_ajax_library' );
24
  */
25
  function bsf_initialize_bsf_meta_boxes() {
26
  if ( ! class_exists( 'bsf_Meta_Box' ) )
27
- require_once 'init.php';
28
  }
29
  //Function to display the rich snippet output below the content
30
  function display_rich_snippet($content) {
@@ -678,7 +678,7 @@ function display_rich_snippet($content) {
678
  }
679
  //Filter the content and return with rich snippet output
680
  add_filter('the_content','display_rich_snippet');
681
- require_once('meta-boxes.php');
682
  function enque() {
683
  wp_enqueue_style('rating_style', plugin_dir_url(__FILE__) . 'css/jquery.rating.css');
684
  wp_enqueue_script('jquery');
24
  */
25
  function bsf_initialize_bsf_meta_boxes() {
26
  if ( ! class_exists( 'bsf_Meta_Box' ) )
27
+ require_once plugin_dir_path( __FILE__ ).'init.php';
28
  }
29
  //Function to display the rich snippet output below the content
30
  function display_rich_snippet($content) {
678
  }
679
  //Filter the content and return with rich snippet output
680
  add_filter('the_content','display_rich_snippet');
681
+ require_once(plugin_dir_path( __FILE__ ).'meta-boxes.php');
682
  function enque() {
683
  wp_enqueue_style('rating_style', plugin_dir_url(__FILE__) . 'css/jquery.rating.css');
684
  wp_enqueue_script('jquery');
index.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.brainstormforce.com
5
  Author: Brainstorm Force
6
  Author URI: http://www.brainstormforce.com
7
  Description: The All in One Rich Snippets gives the power to the blog author to control the rich snippets to be shown in the search results by the search engines.
8
- Version: 1.1.2
9
  Text Domain: rich-snippets
10
  License: GPL2
11
  */
@@ -56,7 +56,7 @@ if ( !class_exists( "RichSnippets" ) )
56
  }
57
  function register_custom_menu_page()
58
  {
59
- require_once('admin/index.php');
60
  $page = add_menu_page('All in One Rich Snippets Dashboard', 'Rich Snippets', 'administrator', 'rich_snippet_dashboard', 'rich_snippet_dashboard', 'div');
61
  //Call the function to print the stylesheets and javascripts in only this plugins admin area
62
  add_action( 'admin_print_styles-' . $page, 'bsf_admin_styles' );
@@ -136,7 +136,7 @@ if ( !class_exists( "RichSnippets" ) )
136
  load_plugin_textdomain('rich-snippets', false, basename( dirname( __FILE__ ) ) . '/lang/' );
137
  }
138
  function register_bsf_settings() {
139
- require_once('settings.php');
140
  add_review_option();
141
  add_event_option();
142
  add_person_option();
@@ -270,7 +270,7 @@ if ( !class_exists( "RichSnippets" ) )
270
 
271
  }
272
  }
273
- require_once('functions.php');
274
  add_filter( 'bsf_meta_boxes', 'bsf_metaboxes' );
275
  // Instantiating the Class
276
  if (class_exists("RichSnippets")) {
5
  Author: Brainstorm Force
6
  Author URI: http://www.brainstormforce.com
7
  Description: The All in One Rich Snippets gives the power to the blog author to control the rich snippets to be shown in the search results by the search engines.
8
+ Version: 1.1.3
9
  Text Domain: rich-snippets
10
  License: GPL2
11
  */
56
  }
57
  function register_custom_menu_page()
58
  {
59
+ require_once(plugin_dir_path( __FILE__ ).'admin/index.php');
60
  $page = add_menu_page('All in One Rich Snippets Dashboard', 'Rich Snippets', 'administrator', 'rich_snippet_dashboard', 'rich_snippet_dashboard', 'div');
61
  //Call the function to print the stylesheets and javascripts in only this plugins admin area
62
  add_action( 'admin_print_styles-' . $page, 'bsf_admin_styles' );
136
  load_plugin_textdomain('rich-snippets', false, basename( dirname( __FILE__ ) ) . '/lang/' );
137
  }
138
  function register_bsf_settings() {
139
+ require_once(plugin_dir_path( __FILE__ ).'settings.php');
140
  add_review_option();
141
  add_event_option();
142
  add_person_option();
270
 
271
  }
272
  }
273
+ require_once(plugin_dir_path( __FILE__ ).'functions.php');
274
  add_filter( 'bsf_meta_boxes', 'bsf_metaboxes' );
275
  // Instantiating the Class
276
  if (class_exists("RichSnippets")) {
readme.txt CHANGED
@@ -1 +1 @@
1
- === All In One Schema.org Rich Snippets ===
2
- It gives search engines only the important & precise information to display in search result snippets.
3
- Rich Snippets are very interactive (photos, star ratings, price, author, etc.) to let you stand out from competition
4
- [See what difference it makes](http://dashburst.com/google-search-what-are-rich-snippets/ "See the difference") in CTR (Click Through Rate)
5
- Helps you rank higher in search results
6
- Helps Facebook display proper information when users share your links on Facebook
7
- Even simpler, shorter, typographic and more beautiful design of MicroData box. May be like this https://moqups.com/brainstormforce/5P0EaLtt
8
- Redesigned admin panel
9
- Refined MicroData input options
10
- Support for more post types (Local Business, etc)
11
- It gives search engines only the important & precise information to display in search result snippets.
12
- Rich Snippets are very interactive (photos, star ratings, price, author, etc.) to let you stand out from competition
13
- [See what difference it makes](http://dashburst.com/google-search-what-are-rich-snippets/ "See the difference") in CTR (Click Through Rate)
14
- Helps you rank higher in search results
15
- Helps Facebook display proper information when users share your links on Facebook
16
- It gives search engines only the important & precise information to display in search result snippets.
17
- Rich Snippets are very interactive (photos, star ratings, price, author, etc.) to let you stand out from competition
18
- [See what difference it makes](http://dashburst.com/google-search-what-are-rich-snippets/ "See the difference") in CTR (Click Through Rate)
19
- Helps you rank higher in search results
20
- Helps Facebook display proper information when users share your links on Facebook
21
- Even simpler, shorter, typographic and more beautiful design of MicroData box. May be like this https://moqups.com/brainstormforce/5P0EaLtt
22
- Redesigned admin panel
23
- Refined MicroData input options
24
- Support for more post types (Local Business, etc)
25
- It gives search engines only the important & precise information to display in search result snippets.
26
- Rich Snippets are very interactive (photos, star ratings, price, author, etc.) to let you stand out from competition
27
- [See what difference it makes](http://dashburst.com/google-search-what-are-rich-snippets/ "See the difference") in CTR (Click Through Rate)
28
- Helps you rank higher in search results
29
- Helps Facebook display proper information when users share your links on Facebook
1
+ === All In One Schema.org Rich Snippets ===