Changeset 1804947
- Timestamp:
- 01/18/2018 06:55:34 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
folio/trunk/folio.php
r1804886 r1804947 3 3 * Plugin Name: autometa's FOLIO 4 4 * Description: It reproduces portfolio categories and attributes in portfolios and it generates a cloud mixing categories and attributes of portfolios simply via: [pfcats] and [pfatts] and [folio]. 5 * Version: 2. 15 * Version: 2.2 6 6 * Author: JorgeAmVF 7 7 * Author URI: https://profiles.wordpress.org/jorgeamvf/ … … 30 30 global $post; 31 31 $am_pfcats = '<span id="pfcats" class="autometa">' . get_the_term_list( $post->ID, 'project-type', $separator = ' ' ) . '</span>'; 32 32 return $am_pfcats; 33 33 } 34 34 add_shortcode( "pfcats", "autometa_portfolio_categories" ); … … 38 38 global $post; 39 39 $am_pfatts = '<span id="pfatts" class="autometa">' . get_the_term_list( $post->ID, 'project-attributes', $separator = ' ' ) . '</span>'; 40 40 return $am_pfatts; 41 41 } 42 42 add_shortcode( "pfatts", "autometa_portfolio_attributes" ); … … 54 54 ), 55 55 ) ) . '</span>'; 56 56 return $am_folio; 57 57 } 58 58 add_shortcode( "folio", "autometa_portfolio_taxonomies" );
Note: See TracChangeset
for help on using the changeset viewer.