Skip to content

Commit

Permalink
Merge pull request #18 from timbocode/0.3-dev
Browse files Browse the repository at this point in the history
0.3.2 bug fix release
  • Loading branch information
timbocode authored Nov 20, 2019
2 parents 0b80503 + 70946bb commit fbf9a44
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#### v 0.3.2 / 2019-11-20
* FIX: Fix for #17: PHP error "call_user_func_array() expects parameter 1 to be a valid callback, function on_login not found or invalid function name"

#### v 0.3.1 / 2019-11-18
* FIX: Classic SEO icon size in admin menu

#### v 0.3.0 / 2019-11-18
* NEW: Plugin has new name. Now called Classic SEO as per [discussions on forums](https://forums.classicpress.net/t/plugin-theme-naming-conventions-when-to-use-classicpress-and-or-cp/1653/8). Note: plugin directory is still called "classicpress-seo" and the main PHP file is called "classicpress-seo.php". These will be changed in a future version.
* NEW: Added ability to set metabox position on post/page/product edit pages
* NEW: Added support for Pinterest meta tag
* NEW: Added "nosnippet", "max-snippet:\[number\]", "max-video-preview:\[number\]" and "max-image-preview:\[setting\]" Advanced Robots Meta settings. See https://webmasters.googleblog.com/2019/09/more-controls-on-search.html
* UPDATED: Schema Types updated including removal of "self-serving" review snippets
* Updated the Help page
* Plugin icon updated

#### v 0.2.2 / 2019-10-31
* Fixed CSS bug which prevented tab icons from displaying correctly on post edit page in admin
* Fixed bug that disabled the sitemap "Include Featured Images" feature
* Improved l8n checks
* Removed a couple of debug messages from assessor.js (forgot they were still there!)
* Removed a couple of unused files

#### v 0.2.1 / 2019-10-27)
* Fixed issue with breadcrumbs not displaying

#### v 0.2.0 / 2019-10-26
* Initial public release
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ If you find a bug, please create an issue on the [issues page](https://github.co

## Changelog

### v 0.3.2 (Nov 20, 2019)
- FIX: Fix for #17: PHP error "call_user_func_array() expects parameter 1 to be a valid callback, function on_login not found or invalid function name"

### v 0.3.1 (Nov 18, 2019)
- FIX: Classic SEO icon size in admin menu

Expand Down
5 changes: 2 additions & 3 deletions classicpress-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin Name: Classic SEO
* Plugin URI: https://www.classicpress.net
* Description: SEO solution for ClassicPress (experimental).
* Version: 0.3.1
* Version: 0.3.2
* Author: ClassicPress Community
* Author URI: https://www.classicpress.net
* GitHub Plugin URI: https://github.com/ClassicPress-research/classicpress-seo
Expand Down Expand Up @@ -37,7 +37,7 @@ class Classic_SEO {
*
* @var string
*/
public $version = '0.3.1';
public $version = '0.3.2';

/**
* Classic SEO database version.
Expand Down Expand Up @@ -302,7 +302,6 @@ private function init_actions() {
// Booting.
add_action( 'plugins_loaded', [ $this, 'init' ], 14 );
add_action( 'rest_api_init', [ $this, 'init_rest_api' ] );
add_action( 'wp_login', [ $this, 'on_login' ] );

// Load admin-related functionality.
if ( is_admin() ) {
Expand Down

0 comments on commit fbf9a44

Please sign in to comment.