Skip to content

Commit

Permalink
Added quick-edit support.
Browse files Browse the repository at this point in the history
  • Loading branch information
sybrew committed Oct 13, 2020
1 parent e7999b7 commit 0ccc266
Show file tree
Hide file tree
Showing 28 changed files with 1,335 additions and 157 deletions.
3 changes: 2 additions & 1 deletion bootstrap/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ function _register_autoloader() {
* @since 1.5.0 Now requires TSF 2.8+ to load.
* @since 2.0.2 Now requires TSF 3.1+ to load.
* @since 2.2.0 Now requires TSF 3.3+ to load.
* @since 2.4.1 Now requires TSF 4.0.5 to load.
* @staticvar bool $can_load
*
* @return bool Whether the plugin can load. Always returns false on the front-end.
Expand All @@ -223,7 +224,7 @@ function can_load_class() {
return $can_load;

if ( function_exists( '\\the_seo_framework' ) ) {
if ( version_compare( THE_SEO_FRAMEWORK_VERSION, '3.3', '>=' ) && \the_seo_framework()->loaded )
if ( version_compare( THE_SEO_FRAMEWORK_VERSION, '4.0.5', '>=' ) && \the_seo_framework()->loaded )
return $can_load = (bool) \apply_filters( 'tsf_extension_manager_enabled', true );
}

Expand Down
4 changes: 2 additions & 2 deletions extensions/essentials/articles/trunk/articles.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Extension Name: Articles
* Extension URI: https://theseoframework.com/extensions/articles/
* Extension Description: The Articles extension enhances your published posts by automatically adding important [Structured Data](https://developers.google.com/search/docs/data-types/article). Great for bloggers, news publishers, and scientific pieces. It comes with a Google News sitemap, as well.
* Extension Version: 2.0.4
* Extension Version: 2.1.0
* Extension Author: Sybre Waaijer
* Extension Author URI: https://cyberwire.nl/
* Extension License: GPLv3
Expand Down Expand Up @@ -41,7 +41,7 @@
* @since 1.0.0
* NOTE: The presence does NOT guarantee the extension is loaded!!!
*/
define( 'TSFEM_E_ARTICLES_VERSION', '2.0.4' );
define( 'TSFEM_E_ARTICLES_VERSION', '2.1.0' );

/**
* The extension database version.
Expand Down
Loading

0 comments on commit 0ccc266

Please sign in to comment.