Plugin Directory

Changeset 2834020


Ignore:
Timestamp:
12/14/2022 08:12:01 PM (3 years ago)
Author:
rockcontentplatform
Message:

Correção de chamada de uma função

Location:
rock-content
Files:
84 added
4 edited

Legend:

Unmodified
Added
Removed
  • rock-content/tags/3.0.1/inc/Integrations/RockAnalytics.php

    r2830207 r2834020  
    4343            'post_date'           => strtotime( $post->post_date ),
    4444            'post_author'         => get_the_author_meta( 'display_name', $post->post_author ),
    45             'categories_json'     => wp_json_encode( $this->setup_chorus_analytics_get_post_categories( $post->ID ) ),
    46             'tags_json'           => wp_json_encode( $this->setup_chorus_analytics_get_post_tags( $post->ID ) ),
    47             'word_count'          => $this->setup_chorus_analytics_get_post_word_count( $post->ID ),
     45            'categories_json'     => wp_json_encode( setup_chorus_analytics_get_post_categories( $post->ID ) ),
     46            'tags_json'           => wp_json_encode( setup_chorus_analytics_get_post_tags( $post->ID ) ),
     47            'word_count'          => setup_chorus_analytics_get_post_word_count( $post->ID ),
    4848            'published_by_studio' => ( get_post_meta( $post->ID, 'published_by_studio', true ) ? 'true' : 'false' ),
    4949        );
     
    172172        ';
    173173
    174         echo esc_js( $amp_tag );
     174        echo $amp_tag;
    175175    }
    176176
  • rock-content/trunk/README.txt

    r2830207 r2834020  
    55Requires at least: 3.5.0
    66Tested up to: 6.0.3
    7 Stable tag: 3.0.1
     7Stable tag: 3.0.2
    88
    99Este fantástico plugin permite integrar o seu blog Wordpress com as plataformas de marketing de conteúdo da [Rock Content](https://rockcontent.com/).
     
    8282* Correção do endpoint do Rock Analytics.
    8383
     84= 3.0.2 =
     85* Correção de chamada de uma função.
     86
    8487== Upgrade Notice ==
    8588
  • rock-content/trunk/RockContent.php

    r2830207 r2834020  
    1616 * Plugin URI:        https://rockcontent.com/
    1717 * Description:       Este fantástico plugin permite integrar o seu blog WordPress com a plataforma Rock Content.
    18  * Version:           3.0.1
     18 * Version:           3.0.2
    1919 * Author:            Rock Content
    2020 * Author URI:        https://rockcontent.com/
     
    3434define( 'RCP_NAME', 'rock-content' );
    3535
    36 define( 'RCP_VERSION', '3.0.1' );
     36define( 'RCP_VERSION', '3.0.2' );
    3737
    3838define( 'RCP_NAME_DIR', plugin_dir_path( __FILE__ ) );
  • rock-content/trunk/inc/Integrations/RockAnalytics.php

    r2830207 r2834020  
    4343            'post_date'           => strtotime( $post->post_date ),
    4444            'post_author'         => get_the_author_meta( 'display_name', $post->post_author ),
    45             'categories_json'     => wp_json_encode( $this->setup_chorus_analytics_get_post_categories( $post->ID ) ),
    46             'tags_json'           => wp_json_encode( $this->setup_chorus_analytics_get_post_tags( $post->ID ) ),
    47             'word_count'          => $this->setup_chorus_analytics_get_post_word_count( $post->ID ),
     45            'categories_json'     => wp_json_encode( setup_chorus_analytics_get_post_categories( $post->ID ) ),
     46            'tags_json'           => wp_json_encode( setup_chorus_analytics_get_post_tags( $post->ID ) ),
     47            'word_count'          => setup_chorus_analytics_get_post_word_count( $post->ID ),
    4848            'published_by_studio' => ( get_post_meta( $post->ID, 'published_by_studio', true ) ? 'true' : 'false' ),
    4949        );
     
    172172        ';
    173173
    174         echo esc_js( $amp_tag );
     174        echo $amp_tag;
    175175    }
    176176
Note: See TracChangeset for help on using the changeset viewer.