Plugin Directory

Changeset 1804947


Ignore:
Timestamp:
01/18/2018 06:55:34 AM (7 years ago)
Author:
JorgeAmVF
Message:

code formatting and version alignment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • folio/trunk/folio.php

    r1804886 r1804947  
    33* Plugin Name: autometa's FOLIO
    44* 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.1
     5* Version: 2.2
    66* Author: JorgeAmVF
    77* Author URI: https://profiles.wordpress.org/jorgeamvf/
     
    3030    global $post;
    3131    $am_pfcats = '<span id="pfcats" class="autometa">' . get_the_term_list( $post->ID, 'project-type', $separator = ' ' ) . '</span>';
    32         return $am_pfcats;
     32    return $am_pfcats;
    3333}
    3434add_shortcode( "pfcats", "autometa_portfolio_categories" );
     
    3838    global $post;
    3939    $am_pfatts = '<span id="pfatts" class="autometa">' . get_the_term_list( $post->ID, 'project-attributes', $separator = ' ' ) . '</span>';
    40         return $am_pfatts;
     40    return $am_pfatts;
    4141}
    4242add_shortcode( "pfatts", "autometa_portfolio_attributes" );
     
    5454            ),
    5555        ) ) . '</span>';
    56             return $am_folio;
     56    return $am_folio;
    5757}
    5858add_shortcode( "folio", "autometa_portfolio_taxonomies" );
Note: See TracChangeset for help on using the changeset viewer.