Changeset 3468150
- Timestamp:
- 02/24/2026 01:42:35 AM (6 weeks ago)
- Location:
- phynite-analytics
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from phynite-analytics/trunk)
-
tags/1.1.1/includes/class-phynite-sync.php (modified) (1 diff)
-
tags/1.1.1/includes/extractors/class-phynite-post-extractor.php (modified) (1 diff)
-
tags/1.1.1/phynite-analytics.php (modified) (2 diffs)
-
trunk/includes/class-phynite-sync.php (modified) (1 diff)
-
trunk/includes/extractors/class-phynite-post-extractor.php (modified) (1 diff)
-
trunk/phynite-analytics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
phynite-analytics/tags/1.1.1/includes/class-phynite-sync.php
r3467969 r3468150 180 180 181 181 $url = get_permalink( $post ); 182 $content = $post->post_content;182 $content = '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $post->post_content; 183 183 184 184 // Skip if content is empty. -
phynite-analytics/tags/1.1.1/includes/extractors/class-phynite-post-extractor.php
r3467969 r3468150 35 35 'title' => get_the_title( $post ), 36 36 'excerpt' => $this->get_excerpt( $post ), 37 'content' => $content,37 'content' => '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $content, 38 38 'word_count' => str_word_count( $plain_content ), 39 39 -
phynite-analytics/tags/1.1.1/phynite-analytics.php
r3467969 r3468150 4 4 * Plugin URI: https://phyniteanalytics.com 5 5 * Description: Connect your WordPress site to Phynite Analytics for personalized content recommendations. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Author: Phynite 8 8 * Author URI: https://phynitesolutions.com … … 23 23 24 24 // Plugin constants. 25 define( 'PHYNITE_VERSION', '1.1. 0' );25 define( 'PHYNITE_VERSION', '1.1.1' ); 26 26 define( 'PHYNITE_PLUGIN_FILE', __FILE__ ); 27 27 define( 'PHYNITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
phynite-analytics/trunk/includes/class-phynite-sync.php
r3467969 r3468150 180 180 181 181 $url = get_permalink( $post ); 182 $content = $post->post_content;182 $content = '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $post->post_content; 183 183 184 184 // Skip if content is empty. -
phynite-analytics/trunk/includes/extractors/class-phynite-post-extractor.php
r3467969 r3468150 35 35 'title' => get_the_title( $post ), 36 36 'excerpt' => $this->get_excerpt( $post ), 37 'content' => $content,37 'content' => '<h1>' . esc_html( get_the_title( $post ) ) . '</h1>' . $content, 38 38 'word_count' => str_word_count( $plain_content ), 39 39 -
phynite-analytics/trunk/phynite-analytics.php
r3467969 r3468150 4 4 * Plugin URI: https://phyniteanalytics.com 5 5 * Description: Connect your WordPress site to Phynite Analytics for personalized content recommendations. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Author: Phynite 8 8 * Author URI: https://phynitesolutions.com … … 23 23 24 24 // Plugin constants. 25 define( 'PHYNITE_VERSION', '1.1. 0' );25 define( 'PHYNITE_VERSION', '1.1.1' ); 26 26 define( 'PHYNITE_PLUGIN_FILE', __FILE__ ); 27 27 define( 'PHYNITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.