Plugin Directory

Changeset 3099174


Ignore:
Timestamp:
06/07/2024 08:52:33 AM (22 months ago)
Author:
techteamnexmind
Message:

init v1.0.3

Location:
nexmind/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nexmind/trunk/readme.txt

    r3098264 r3099174  
    44Tags: nexmind, nexmind ai, AI Content Generator, SEO Automation
    55Requires at least: 4.7
    6 Tested up to: 6.5.3
    7 Stable tag: 1.0.2
     6Tested up to: 6.5.4
     7Stable tag: 1.0.3
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    3737== Changelog ==
    3838
     39= 1.0.3 =
     40* Updated to WordPress 6.5.4
     41
    3942= 1.0.2 =
    4043* Updated to WordPress 6.5.3
     
    4851== Upgrade Notice ==
    4952
     53= 1.0.3 =
     54* Updated to WordPress 6.5.4
     55
    5056= 1.0.2 =
    5157* Updated to WordPress 6.5.3
  • nexmind/trunk/wl-api.php

    r3098264 r3099174  
    44Plugin URI: https://www.nexmind.ai/
    55Description: a WordPress plugin that brings your generated content into WordPress Posts.
    6 Version: 1.0.1
     6Version: 1.0.3
    77Author: Ali
    88License: GPL2
     
    211211        );
    212212        foreach ($posts as $post) {
    213             $table_name = $wpdb->prefix . 'nexmind_settings';
    214             $user_id = $wpdb->get_var($wpdb->prepare("SELECT user_id FROM %i WHERE post_id = %d", $table_name, $post->ID));
    215             $token = $wpdb->get_var($wpdb->prepare("SELECT token FROM %i WHERE post_id = %d", $table_name, $post->ID));
     213            // $table_name = $wpdb->prefix . 'nexmind_settings';
     214            // $user_id = $wpdb->get_var($wpdb->prepare("SELECT user_id FROM %i WHERE post_id = %d", $table_name, $post->ID));
     215            // $token = $wpdb->get_var($wpdb->prepare("SELECT token FROM %i WHERE post_id = %d", $table_name, $post->ID));
    216216            $data[] = array(
    217217                'ID' => intval($post->ID),
     
    219219                'author' => sanitize_text_field(get_the_author_meta('display_name', $post->author)),
    220220                'date' => date_i18n(get_option('date_format'), strtotime($post->date)),
    221                 'user_id' => intval($user_id),
    222                 'token' => esc_html($token),
     221                // 'user_id' => intval($user_id),
     222                // 'token' => esc_html($token),
    223223            );
    224224        }
Note: See TracChangeset for help on using the changeset viewer.