Plugin Directory

Changeset 3087914


Ignore:
Timestamp:
05/16/2024 05:11:21 PM (22 months ago)
Author:
knowhalim
Message:

Updated raw content filter

Location:
easily-post-gpt
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • easily-post-gpt/trunk/README.txt

    r3085974 r3087914  
    44Requires at least: 5.7
    55Tested up to: 6.5.3
    6 Stable tag: 1.0.9
     6Stable tag: 1.1.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • easily-post-gpt/trunk/admin/class-gpt2wp-admin.php

    r3085974 r3087914  
    254254    $post_data = array(
    255255        'post_title' => apply_filters('gpt2wp_content_title',$post_title),
    256         'post_content' => gpt2wp_convert_code_blocks(apply_filters('gpt2wp_content_post',gpt2wp_convertToHyperlinks(gpt2wp_convertStrongTags($post_content)))),
     256        'post_content' => gpt2wp_convert_code_blocks(apply_filters('gpt2wp_content_post',gpt2wp_convertToHyperlinks(gpt2wp_convertStrongTags(apply_filters('gpt2wp_raw_content_post',$post_content))))),
    257257        'post_category' => array(gpt2wp_category_make($post_category)),
    258258        'tags_input' => $post_tags,
  • easily-post-gpt/trunk/gpt2wp.php

    r3085974 r3087914  
    1717 * Plugin URI:        https://gpttowp.com
    1818 * Description:       Easily post from ChatGPT to your WP without writing any codes.
    19  * Version:           1.0.9
     19 * Version:           1.1.0
    2020 * Author:            Knowhalim
    2121 * Author URI:        https://knowhalim.com/
     
    3232
    3333
    34 define( 'GPT2WP_VERSION', '1.0.9' );
     34define( 'GPT2WP_VERSION', '1.1.0' );
    3535
    3636
Note: See TracChangeset for help on using the changeset viewer.