Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_shortcode('mon-shortcode', function($atts) {
- global $post;
- $variable = $atts['variable']; // récupération de la valeur de "variable", par exemple "4" pour [mon-shortcode variable="4"]
- $test = get_field('test'); // récupération de l'ACF "test" du post dans lequel est affiché le shortcode
- ob_start();
- ?>
- Topkek
- <?php
- return ob_get_clean();
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement