1 <?php |
1 <?php |
2 /* |
2 /* |
3 Plugin Name: All in One SEO Pack |
3 Plugin Name: All in One SEO Pack |
4 Plugin URI: http://semperfiwebdesign.com |
4 Plugin URI: http://semperfiwebdesign.com |
5 Description: Out-of-the-box SEO for your WordPress blog. <a href="options-general.php?page=all-in-one-seo-pack/aioseop.class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/forum/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a> |
5 Description: Out-of-the-box SEO for your WordPress blog. <a href="options-general.php?page=all-in-one-seo-pack/aioseop.class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/forum/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a> |
6 Version: 1.6.15.2 |
6 Version: 1.6.15.3 |
7 Author: Michael Torbert |
7 Author: Michael Torbert |
8 Author URI: http://michaeltorbert.com |
8 Author URI: http://michaeltorbert.com |
9 */ |
9 */ |
10 |
10 |
11 /* |
11 /* |
28 |
28 |
29 //register_activation_hook(__FILE__,'aioseop_activate_pl'); |
29 //register_activation_hook(__FILE__,'aioseop_activate_pl'); |
30 |
30 |
31 /** |
31 /** |
32 * @package All-in-One-SEO-Pack |
32 * @package All-in-One-SEO-Pack |
33 * @version 1.6.15.2 |
33 * @version 1.6.15.3 |
34 */ |
34 */ |
35 |
35 |
36 if ( ! defined( 'AIOSEOP_VERSION' ) ) |
36 if ( ! defined( 'AIOSEOP_VERSION' ) ) |
37 define( 'AIOSEOP_VERSION', '1.6.15.2' ); |
37 define( 'AIOSEOP_VERSION', '1.6.15.3' ); |
38 |
38 |
39 if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) |
39 if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) |
40 define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
40 define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
41 |
41 |
42 if ( ! defined( 'AIOSEOP_PLUGIN_BASENAME' ) ) |
42 if ( ! defined( 'AIOSEOP_PLUGIN_BASENAME' ) ) |
93 add_filter( 'user_contactmethods', 'aioseop_add_contactmethods' ); |
93 add_filter( 'user_contactmethods', 'aioseop_add_contactmethods' ); |
94 add_filter( 'wp_list_pages', 'aioseop_list_pages' ); |
94 add_filter( 'wp_list_pages', 'aioseop_list_pages' ); |
95 add_action( 'edit_post', array( $aiosp, 'post_meta_tags') ); |
95 add_action( 'edit_post', array( $aiosp, 'post_meta_tags') ); |
96 add_action( 'publish_post', array( $aiosp, 'post_meta_tags') ); |
96 add_action( 'publish_post', array( $aiosp, 'post_meta_tags') ); |
97 add_action( 'save_post', array( $aiosp, 'post_meta_tags') ); |
97 add_action( 'save_post', array( $aiosp, 'post_meta_tags') ); |
|
98 add_action( 'add_attachment', array( $aiosp, 'post_meta_tags') ); |
|
99 add_action( 'edit_attachment', array( $aiosp, 'post_meta_tags') ); |
98 add_action( 'edit_page_form', array( $aiosp, 'post_meta_tags') ); |
100 add_action( 'edit_page_form', array( $aiosp, 'post_meta_tags') ); |
99 add_action( 'init', array( $aiosp, 'init' ), 5 ); |
101 add_action( 'init', array( $aiosp, 'init' ), 5 ); |
100 add_action( 'wp_head', array( $aiosp, 'wp_head') ); |
102 add_action( 'wp_head', array( $aiosp, 'wp_head') ); |
101 add_action( 'template_redirect', array( $aiosp, 'template_redirect') ); |
103 add_action( 'template_redirect', array( $aiosp, 'template_redirect') ); |
102 add_action( 'admin_menu', array( $aiosp, 'admin_menu') ); |
104 add_action( 'admin_menu', array( $aiosp, 'admin_menu') ); |