tacowordpress/addbysearch

This plugin allows for post ordering and assigning of relationships to other posts by searching.

Installs: 1 347

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 9

Forks: 1

Open Issues: 1

Language:JavaScript

dev-master 2016-10-06 22:03 UTC

This package is auto-updated.

Last update: 2024-05-23 15:22:10 UTC


README

Please use tacowordpress/addmany for newer projects. https://github.com/tacowordpress/addmany

AddBySearch is a Wordpress Taco add-on that allows you to easily assign relationships to other posts as well as order them.

Docs: http://tacowordpress.github.io/addbysearch/

Setup

  1. Plese make sure to install the dependency of Taco first. https://github.com/tacowordpress/tacowordpress/

  2. Add AddBySearch to your composer.json file right after Taco:

     {
       "require": {
         "tacowordpress/tacowordpress: "dev-master",
         "tacowordpress/addbysearch": "dev-master"
       }
     }
    
  3. Initialize AddBySearch in functions.php right after Taco

     // Initialize Taco
     \Taco\Loader::init();
     
     // Initialize AddBySearch
     \AddBySearch\Loader::init();