Plugin Directory

Changeset 3284462


Ignore:
Timestamp:
04/30/2025 01:22:37 AM (11 months ago)
Author:
galbc
Message:

Update trunk to version 1.0.1

Location:
sapientseo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sapientseo/trunk/inc/api/get-schemas.php

    r3283788 r3284462  
    111111                '_yoast_wpseo_canonical',
    112112                '_yoast_wpseo_opengraph-title',
    113                 '_yoast_wpseo_opengraph-description'
     113                '_yoast_wpseo_opengraph-description',
     114                '_yoast_wpseo_opengraph-image',
     115                '_yoast_wpseo_twitter-title',
     116                '_yoast_wpseo_twitter-description',
     117                '_yoast_wpseo_twitter-image',
     118                '_yoast_wpseo_schema_page_type',
     119                '_yoast_wpseo_schema_article_type',
     120                '_yoast_wpseo_robots_index',
     121                '_yoast_wpseo_robots_follow'
    114122            ];
    115123
    116124            $seo_fields = [];
    117125            foreach ($yoast_meta_keys as $meta_key) {
    118                 $exists = $wpdb->get_var($wpdb->prepare(
    119                     "SELECT COUNT(*) FROM {$wpdb->postmeta} WHERE meta_key = %s",
    120                     $meta_key
    121                 ));
    122 
    123                 if ($exists > 0) {
    124                     $seo_fields[$meta_key] = "string";
    125                 }
     126                $seo_fields[$meta_key] = "string";
    126127            }
    127128
    128             if (!empty($seo_fields)) {
    129                 $schema['seo'] = $seo_fields;
    130             }
     129            $schema['seo'] = $seo_fields;
    131130        }
    132131
  • sapientseo/trunk/readme.txt

    r3283796 r3284462  
    44Tested up to: 6.8
    55Requires PHP: 7.4
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2121== Installation ==
    2222
    23 1. Upload the plugin folder to `/wp-content/plugins/sapientseo`
     231. Install the plugin via the Plugins menu in WordPress by searching for “SapientSEO” — or upload the plugin .zip file manually via Plugins → Add New → Upload Plugin.
    24242. Activate the plugin via the "Plugins" menu in WordPress
    25253. Navigate to **SapientSEO** in the admin menu to find your secret key
    26264. Paste the key into the SapientSEO app under Company Configuration
     27
     28**Recommended:** Enable auto-updates from the Plugins screen to ensure compatibility with new SapientSEO features and improvements.
    2729
    2830== Frequently Asked Questions ==
  • sapientseo/trunk/sapientseo.php

    r3283788 r3284462  
    33 * Plugin Name: SapientSEO
    44 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints.
    5  * Version: 1.0.0
     5 * Version: 1.0.1
    66 * Author: SapientSEO
    77 * Plugin URI: https://sapientseo.ai
Note: See TracChangeset for help on using the changeset viewer.