Page Load Ajax

Page Load Ajax

This plugin enables the use of shortcodes that create links to replace the current page content with the content of another page.

  • Almost active
    This plugin was not updated the last 282 days ago.
  • This plugin is tested with the last major release of WordPress
    Content for list item
  • Compatible with the latest major PHP release
    This plugin requieres PHP 7.2 or higher. The latest stable PHP 8.4.3 was released on 16 January 2025
  • No information about vulnerabilities and unfixed security issues is available.
    Content for list item

Ratings

3

Active installs

50

Total Downloads

4K

Support Threads

0

Last updated

10 April 2024

Added

06 May 2021

Versions

21.15%78.85%
  • Version 1.6
  • Version 1.7

About Page Load Ajax

Changelog

1.0

1.1

1.2

1.4

Change:

    <?php
        wp_nav_menu( ['theme_location' => 'primary'] );
    ?>

Into:

    <?php
        $args = array();
        $args['theme_location'] = 'primary';

        // Add pla menu walker only when pla is activated
        if ( class_exists( 'PLA_Menu_Walker' ) ) {
            $args['walker'] = new PLA_Menu_Walker();
        }
        wp_nav_menu( $args );
    ?>

1.5

1.6

1.7

How to install Page Load Ajax

After standard installation, one should specify the preferences on the WP Settings -> Page Load Ajax settings admin page.
It is important to know the html element id or class of the page title and page content. This is dependant of the theme being used.
Id’s should be prefixed by a hashtag (#) and classes by a dot (.) when specifying these settings.
IMPORTANT: After installation: go to the WP Settings -> Permalinks admin page and acitvate the Save Changes button, even when you did not changed anything.