web-dev-qa-db-fra.com

Comment modifier une variable globale dans une fonction et l'utiliser sur une autre fonction?

Etat final: comme Nathan Johnson l’a déclaré, je change de plug-in en classe, mais je ne peux toujours pas utiliser post id dans la fonction increment_like ...

<?php .... //irrelevant parts skipped
class wpse_263293 {
    protected $ID;

    //* Add actions on init
    public function init() {
    add_action( 'the_post', [ $this, 'createLikeButton' ] );
    add_action( 'wp_footer', [ $this, 'footer' ] );
    add_action('wp_enqueue_scripts',[ $this ,'button_js']);
    add_action('wp_ajax_increment_like', [$this,'increment_like']);
    add_action('wp_ajax_no_priv_increment_like',[$this,'increment_like']);
}

public function footer() {
//* Print the ID property in the footer
echo $this->ID; //This one works
}
public function createLikeButton( $post ) {

  $this->ID = $post->ID;
  $myId=$post->ID;
  echo "<button onclick=\"likeButton()\" p style=\"font-size:10px\" id=\"likeButton\">LIKE</button>";
}
public function button_js(){
    wp_enqueue_script( 'likeButton', plugins_url( '/like.js', __FILE__ ),array('jquery'));
    wp_localize_script('likeButton', 'my_ajax_object', array( 'ajax_url' =>admin_url('admin-ajax.php')));
    wp_localize_script('likeButton', 'new_ajax_object', array( 'ajax_url' =>admin_url('admin-ajax.php')));
}

public function increment_like() {

    echo $this->ID."test"; //I only see test
    /* irrelevant code*/

}

}
//* Initiate the class and hook into init
add_action( 'init', [ $wpse_263293 = new wpse_263293(), 'init' ] );
?>
1
codemonkey

La façon dont je le ferais est de non utiliser des variables globales.

C'est une classe simple qui utilise 3 méthodes et 1 propriété pour se connecter à the_post et faire écho à l'ID de publication dans le pied de page.

/**
 * Plugin Name: WPSE_263293 Example
 */

class wpse_263293 {
  protected $ID;

  //* Add actions on init
  public function init() {
    add_action( 'the_post', [ $this, 'the_post' ] );
    add_action( 'wp_footer', [ $this, 'footer' ] );
  }
  public function the_post( $post ) {
    //* Only do this once
    remove_action( 'the_post', [ $this, 'the_post' ] );

    //* This is the property we're interested in
    $this->ID = $post->ID;
  }
  public function footer() {
    //* Print the ID property in the footer
    echo $this->ID;
  }
}
//* Initiate the class and hook into init
add_action( 'init', [ $wpse_263293 = new wpse_263293(), 'init' ] );
0
Nathan Johnson

Oui, c'est parce que wp_ajax_ * se déclenche avant le_post. J'ai trouvé la solution sur la deuxième réponse de cette question: Obtenir le post_id dans la fonction wp_ajax

 $url     = wp_get_referer();
 $post_id = url_to_postid( $url ); 
0
codemonkey