Wordpress - Charger du contenu ajax via jQuery et WP-Rest-API du core
Le but de la manœuvre est de charger des articles en tant que contenu dans une page. A la maniere d'un systeme de tabulaton, navigation... L'avantage de faire ca a la main, est que l'on garde une grande flexibilite d'integration. |==== |==========| | lien1 | | lien2 | CONTENU | | lien3 | =============== Tout d'abord activer les permalinks, puis creez les articles a charger Dans votre child theme: function.php <?php // add your custom functions here add_action( 'wp_enqueue_scripts', 'fc_enqueue', 999); function fc_enqueue() { wp_register_script( 'fc_ajax_loading', get_stylesheet_directory_uri(). '/js/fc_ajax_loading.js', array( 'jquery' ), '1.0', true ); wp_enqueue_script('fc_ajax_loading'); /js/fc_ajax_loading.js jQuery(document).ready(function($) { /* Append GIF Loader after ajax links */ $('a.ajax-call').each(function(i){ $(this).append(&qu