Plugin Directory

Changeset 2059000


Ignore:
Timestamp:
03/28/2019 02:50:44 PM (7 years ago)
Author:
rveitch
Message:

Updating plugin 3.2.6

Location:
coschedule-by-todaymade
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • coschedule-by-todaymade/trunk/readme.txt

    r2044683 r2059000  
    55Requires at least: 3.5
    66Tested up to: 5.1.0
    7 Stable tag: 3.2.5
     7Stable tag: 3.2.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 3.2.6 =
     93* Adds a new optional filter for conditional post syncing
     94
    9295= 3.2.5 =
    9396* Minor updates for better Gutenberg compatibility.
     
    339342
    340343== Upgrade Notice ==
     344= 3.2.6 =
     345* Adds a new optional filter for conditional post syncing
     346
    341347= 3.2.5 =
    342348* Minor updates for better Gutenberg compatibility.
  • coschedule-by-todaymade/trunk/tm-scheduler.php

    r2044683 r2059000  
    33Plugin Name: CoSchedule
    44Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution.
    5 Version: 3.2.5
     5Version: 3.2.6
    66Author: CoSchedule
    77Author URI: http://coschedule.com/
     
    2424        private $app = "https://app.coschedule.com";
    2525        private $assets = "https://assets.coschedule.com";
    26         private $version = "3.2.5";
     26        private $version = "3.2.6";
    2727        private $build;
    2828        private $connected = false;
     
    4848
    4949            // Load variables
    50             $this->build                  = intval( "85" );
     50            $this->build                  = intval( "86" );
    5151            $this->token                  = get_option( 'tm_coschedule_token' );
    5252            $this->calendar_id            = get_option( 'tm_coschedule_calendar_id' );
     
    14011401         */
    14021402        public function sync_post_callback( $post_id ) {
    1403             if ( true === $this->connected && ! wp_is_post_revision( $post_id ) ) {
     1403            $filter_result = apply_filters( 'tm_coschedule_sync_post_callback_filter', true, $post_id );
     1404            if ( true === $this->connected && ! wp_is_post_revision( $post_id ) && $filter_result ) {
    14041405                $post      = $this->get_full_post( $post_id );
    14051406                $post_type = $this->get_value_or_default( $post['post_type'], 'post' );
Note: See TracChangeset for help on using the changeset viewer.