All Projects → stuttter → Wp Term Order

stuttter / Wp Term Order

Licence: gpl-2.0
Sort taxonomy terms, your way

Projects that are alternatives of or similar to Wp Term Order

Wordpress Plugin Installer
A PHP class for installing and activating WordPress plugins.
Stars: ✭ 69 (-9.21%)
Mutual labels:  wordpress
Autonomie
"Autonomie" is a highly semantic, responsive, accessible and search engine optimized WordPress Theme. It provides HTML5 templates refined with microformats, microformats v2 and microdata (Schema.org). "Autonomie" supports a lot of OpenWeb plugins and is fully IndieWeb compatible.
Stars: ✭ 73 (-3.95%)
Mutual labels:  wordpress
Cat
a slight blog theme.
Stars: ✭ 75 (-1.32%)
Mutual labels:  wordpress
Wpintel
Chrome extension designed for WordPress Vulnerability Scanning and information gathering!
Stars: ✭ 70 (-7.89%)
Mutual labels:  wordpress
Wordpress Plugin Construction
Tools 🧰 for developing and running WordPress websites
Stars: ✭ 73 (-3.95%)
Mutual labels:  wordpress
Plate
A theme support plugin for WordPlate
Stars: ✭ 74 (-2.63%)
Mutual labels:  wordpress
Ext
WP-CLI command which checks the existence of PHP extensions needed to run WordPress.
Stars: ✭ 69 (-9.21%)
Mutual labels:  wordpress
Clover
WordPress block editor CLI
Stars: ✭ 76 (+0%)
Mutual labels:  wordpress
Meadow
WordPress templating DSL based on Twig.
Stars: ✭ 73 (-3.95%)
Mutual labels:  wordpress
Courselit
Start your own online teaching business. Features include course maker, students manager, payments and more.
Stars: ✭ 73 (-3.95%)
Mutual labels:  wordpress
My Custom Functionality
A basic starter plugin to load assets like CSS and JS files in WordPress.
Stars: ✭ 70 (-7.89%)
Mutual labels:  wordpress
Wp Pro Quiz
Wordpress WP-Pro-Quiz Plugin (Official)
Stars: ✭ 72 (-5.26%)
Mutual labels:  wordpress
Germ
一款精美的 WordPress 主题,使用于我的中原驿站中,并保持持续更新。
Stars: ✭ 74 (-2.63%)
Mutual labels:  wordpress
Wp Missed Schedule
Find only missed schedule posts, every 15 minutes, and republish correctly 10 items each session. The Original plugin (only this) no longer available on WordPress.org for explicit author request! Compatible with WP 2.1+ to 4.9+ and 5.0-beta3 (100.000+ installs 300.000+ downloads 2016-04-13) Please: do not install unauthorized malware cloned forked!
Stars: ✭ 69 (-9.21%)
Mutual labels:  wordpress
Ngx Wordpress
Angular WordPress Module ✨
Stars: ✭ 75 (-1.32%)
Mutual labels:  wordpress
Amp Theme Framework
Start Creating an AMP theme in minutes - This is a default / boilerplate theme, you can use this, modify and make one your own.
Stars: ✭ 69 (-9.21%)
Mutual labels:  wordpress
Passwords Evolved
WordPress password authentication for the modern era
Stars: ✭ 74 (-2.63%)
Mutual labels:  wordpress
Gutenberg Parser Rs
An experimental Rust parser for WordPress Gutenberg post format
Stars: ✭ 76 (+0%)
Mutual labels:  wordpress
Theme
Tonik is a WordPress Starter Theme which aims to modernize, organize and enhance some aspects of WordPress theme development.
Stars: ✭ 1,197 (+1475%)
Mutual labels:  wordpress
Mainwp Child
The MainWP Child plugin is installed on the WordPress sites that you want to control from the MainWP Dashboard.
Stars: ✭ 74 (-2.63%)
Mutual labels:  wordpress

WP Term Order

Sort taxonomy terms, your way.

WP Term Order allows users to order any visible category, tag, or taxonomy term numerically, providing a customized order for their taxonomy terms.

Installation

  • Download and install using the built in WordPress plugin installer.
  • Activate in the "Plugins" area of your admin by clicking the "Activate" link.
  • No further setup or configuration is necessary.

Demo

Term Reorder

FAQ

Does this create new database tables?

No. There are no new database tables with this plugin.

Does this modify existing database tables?

Yes. The wp_term_taxonomy table is altered, and an order column is added.

Can I query and sort by order?

Yes. Use it like:

$terms = get_terms( array(
	'taxonomy'   => 'category',
	'depth'      => 1,
	'number'     => 100,
	'parent'     => 0,
	'orderby'    => 'order', // <--- Looky looky!
	'order'      => 'ASC',
	'hide_empty' => false,

	// Try the "wp-term-meta" plugin!
	'meta_query' => array( array(
		'key' => 'term_thumbnail'
	) )
) );

Where can I get support?

The WordPress support forums: https://wordpress.org/support/plugin/wp-term-order/

Can I contribute?

Yes, please! The number of users needing more robust taxonomy term ordering is growing fast. Having an easy-to-use UI and powerful set of functions is critical to managing complex WordPress installations. If this is your thing, please help us out!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].