Plugin Directory

Changeset 3468150


Ignore:
Timestamp:
02/24/2026 01:42:35 AM (6 weeks ago)
Author:
phynite
Message:

Update to version 1.1.1 from GitHub

Location:
phynite-analytics
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • phynite-analytics/tags/1.1.1/includes/class-phynite-sync.php

    r3467969 r3468150  
    180180
    181181        $url     = get_permalink( $post );
    182         $content = $post->post_content;
     182        $content = '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $post->post_content;
    183183
    184184        // Skip if content is empty.
  • phynite-analytics/tags/1.1.1/includes/extractors/class-phynite-post-extractor.php

    r3467969 r3468150  
    3535            'title'          => get_the_title( $post ),
    3636            'excerpt'        => $this->get_excerpt( $post ),
    37             'content'        => $content,
     37            'content'        => '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $content,
    3838            'word_count'     => str_word_count( $plain_content ),
    3939
  • phynite-analytics/tags/1.1.1/phynite-analytics.php

    r3467969 r3468150  
    44 * Plugin URI: https://phyniteanalytics.com
    55 * Description: Connect your WordPress site to Phynite Analytics for personalized content recommendations.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Author: Phynite
    88 * Author URI: https://phynitesolutions.com
     
    2323
    2424// Plugin constants.
    25 define( 'PHYNITE_VERSION', '1.1.0' );
     25define( 'PHYNITE_VERSION', '1.1.1' );
    2626define( 'PHYNITE_PLUGIN_FILE', __FILE__ );
    2727define( 'PHYNITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • phynite-analytics/trunk/includes/class-phynite-sync.php

    r3467969 r3468150  
    180180
    181181        $url     = get_permalink( $post );
    182         $content = $post->post_content;
     182        $content = '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $post->post_content;
    183183
    184184        // Skip if content is empty.
  • phynite-analytics/trunk/includes/extractors/class-phynite-post-extractor.php

    r3467969 r3468150  
    3535            'title'          => get_the_title( $post ),
    3636            'excerpt'        => $this->get_excerpt( $post ),
    37             'content'        => $content,
     37            'content'        => '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $content,
    3838            'word_count'     => str_word_count( $plain_content ),
    3939
  • phynite-analytics/trunk/phynite-analytics.php

    r3467969 r3468150  
    44 * Plugin URI: https://phyniteanalytics.com
    55 * Description: Connect your WordPress site to Phynite Analytics for personalized content recommendations.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Author: Phynite
    88 * Author URI: https://phynitesolutions.com
     
    2323
    2424// Plugin constants.
    25 define( 'PHYNITE_VERSION', '1.1.0' );
     25define( 'PHYNITE_VERSION', '1.1.1' );
    2626define( 'PHYNITE_PLUGIN_FILE', __FILE__ );
    2727define( 'PHYNITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.