• kbxian

    (@kbxian)


    Is it possible to generate wp nonce URL for custom buttons? I have added this code to functions.php but it doesn’t work when I click on my button:

    ....
    $url = get_permalink().'?add_to_wishlist='.get_the_ID();
    ?>
    <a href="<?php echo wp_nonce_url( $url ); ?>">Add to wishlist 2</a>
    
    <?php
    .....
Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    Have you verified what the echo returns in the href attribute of your link?

    Try this:

    echo add_query_arg( '_wpnonce', wp_create_nonce( 'action' ), $url );

    instead of this:

    echo wp_nonce_url( $url );

    We will be attentive to any news.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Generate WP Nonce URL’ is closed to new replies.