Pegasus Post Grid Plugin
WordPress Plugin for displaying posts in a grid.
by Jim O'Brien · github.com/visionquest-development/pegasus-postgrid · website
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/visionquest-development/pegasus-postgrid/archive/refs/heads/master.zipReadme
Pegasus-postgrid
Usage
How to use in your WordPress site
[loop the_query="showposts=100&post_type=page&post_parent=453" bkg_color="#dedede" ]
Or
[loop-posts the_query="post_type=post&showposts=100&ord=ASC&order_by=date" bkg_color="#dedede"]
Or
[loop-grid the_query="post_type=post&showposts=100&ord=ASC&order_by=date" bkg_color="#dedede" pagination="yes"]
Shortcode Attributes: http://pegasustheme.com/pegasus-postgrid/
Installation
How to install to your WordPress site
Simple Instructions
Go to Github and click "Clone or download" and make sure it says "Clone with HTTPS" at the top and click "Download Zip" and save it to a folder on your PC. Then, go to WordPress Back-end and go to Plugins -> Add New and then click on "Upload Plugin" and upload the zip file you downloaded from Github.
Advanced Setup
1.) Upload via FTP/WordPress Admin
Download zip file from here and on extraction make sure the folder name you extract to is saved as pegasus-postgrid instead of pegasus-postgrid-master
Then upload to you server using an FTP program or Use the WordPress Plugin Upload feature in the WordPress Admin.
2.) In the terminal:
For https connection use:
git clone https://github.com/Visionquest-Development/pegasus-postgrid.git pegasus-postgrid
For SSH implementation use this command and make sure you have the SSH key setup on both your terminal and github account. You will need to use your passkey for each update.
git clone git@github.com:Visionquest-Development/pegasus-postgrid.git pegasus-postgrid
How to update
Simple Instructions
Use the WordPress Admin or your favorite FTP program to delete the old plugin from the plugins folder. Then follow the Installation instructions again from above.
Advanced Setup
If you used the Advanced Setup, all you need to do is cd /path/where/plugin/exists && git pull.
How to contribute
If you plan on helping make this plugin better then please follow our guidelines for contributions. We recommend you use a terminal and git clone our repository by using the Advanced Installation Instructions from above. Then, use git checkout -b new-branch-name to create your own branch, and rename it to whatever you want by replacing new-branch-name. Make your changes and then add and commit them to your branch. Make sure to use git push -u origin new-branch-name with the new name when you get done committing your changes to set the upstream for your branch. Then, login to github.com and go to the repo you updated with your new branch and submit a Pull Request. We will review Pull Requests and accept them if it fits with our guidelines and current setup.