Integrating Pods Templates into Taxonomy Archive WITHOUT Taxonomy.php
A way to use the_content filter to push Pods Templates content into a Taxonomy Archive.
Return a Calculated Value in a Pods Template
Calculate values from a Pod using multiple fields in the Pod in a Pods Template
Changing Order of Posts for Taxonomy Archive in Genesis Loop
Need to change the sort direction or filter output based on Taxonomy for a Genesis theme? This method will work for you.
Disable Pods Shortcode button in Post Editor
Use a filter to hide the Pods Shortcode button
How to Limit FIND or WHERE to a specified number of related values
1 2 3 4 5 |
$params = array( 'select' => 't.*, COUNT( relationship.ID ) AS relationship_count', 'groupby' => 't.ID', 'having' => 'relationship_count < 2', ); |
Get Values from a Custom Relationship Field
How to pull records from a related pod through the Relationship Field in a Custom Post Type
Example using Pods-UI to Create Admin Table
Create a specific Admin Table using pods_ui
Changing the Column Order in the Admin Table CPT
Changing orders of the columns in Admin Table
Create a Custom Pagination Navigation using pods_pods_pagination_{type}
Replace the standard pagination navigation with something custom you write yourself.
Add Filter for Do Shortcode in Pods Template
If you want to make sure shortcodes are automatically ran against all Pods Templates, this filter will make that change.