Plugin info

Total downloads: 1,652
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/17/2014 (4236 days ago)
Added to WordPress: 6/25/2014 (11 years old)
Minimum WordPress version: 3.9
Tested up to WordPress version: 3.9.40
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4236 days ago

20/100

Is Gnarly Frontend Page Sort abandoned?

Possibly abandoned (last update 4236 days ago).

Compatibility

Requires WordPress: 3.9
Tested up to: 3.9.40
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Gives user the ability to order sub-pages on the parent page from the frontend of WordPress.

There are some backend plugins that do this, but I recently had a project that had about 30 parent pages, and those had sub-pages, and the sub-pages had sub-pages. We needed to find an alternative solution on the frontend because the majority of the plugins were drag and drop on the admin screen. This fixed this problem.

Installation

This is the code I used to list the child pages on a parent page. I changed the sort_column to menu_order instead of the default post_title, and the sort_order is asc.

<?php

    global $post;

    $args = array(          
        'hierarchical'  => 0,                       
        'child_of'      => 0,
        'parent'        => $post->ID,           
        'number'        => '',
        'sort_order'    =>  'asc',
        'sort_column'   =>  'menu_order'
    );

    $child_pages = get_pages( $args );  
?>

With the Child pages, I then created a custom loop (an example will be included later on in a separate file. I made 2 functions to spit out the pages of the parent page). From there I can add the gnarly tags to the parent container and the child items.

When you install the plugin, just find the template that controls your pages loop and make the following modifications. This example uses Twenty-Fourteen as an example.

<div role="main" class="site-content" id="content" data-gnarly-sort='true'>

    <article data-gnarly-id="58" class="page-58 page" id="page-58">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="57" class="page-57 page" id="page-57">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="56" class="page-56 page" id="page-56">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

    <article data-gnarly-id="55" class="page-55 page" id="page-55">
        <div class="entry-content">
            <h2>Your Page Title</h2>
        </div>
        <!-- .entry-content -->
    </article>
    <!-- #page-## -->    

</div>

Notice the following code

<div role="main" class="site-content" id="content" data-gnarly-sort="true">

The data-gnarly-sort=’true’ attribute tag. This tells the plug-in that it is the parent element of the sorter.

On each of the pages that get spit out, you must include the data-gnarly-id=”58″ in order to tell the sorter that it is a page item that will be drag and drop sorted using the page ID. This attribute is important because it tells wordpress what position it’s in when you drag and drop each element by using the page ID. You can echo out the page ID by using the following PHP pre in the loop.

<article data-gnarly-id="<?php the_ID(); ?>" class="page-58 page" id="page-58"> 

Minimum Requirements

  • WordPress 3.9 or greater
  • PHP version 5.2.4 or greater
  • MySQL version 5.0 or greater

Frequently Asked Questions

I installed the plugin, I don’t know what to do.

Please follow the instructions in the readme.txt file in order to set up the plugin correctly. Everyone’s themes are different, and I am currently working on a better solution to specify the parent and child elements

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Updated admin check in plugins main file

1.0.0 – 06/24/2014

  • Initial Release