Plugin Directory

Changeset 727738


Ignore:
Timestamp:
06/18/2013 04:52:56 AM (13 years ago)
Author:
bholtsclaw
Message:

trim tabname whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gplus-comments/trunk/includes/lib/hooks.php

    r727735 r727738  
    116116
    117117// [bartag foo="foo-value"]
    118 function bartag_func( $atts ) {
     118function gplus_comments_shortcode( $atts ) {
    119119  extract( shortcode_atts( array(
    120     'foo' => 'something',
    121     'bar' => 'something else',
     120    'width' => '600',
    122121  ), $atts ) );
    123122
    124   return "foo = {$foo}";
     123  return GPLUS_COMMENTS_TEMPLATES . '/container.php';
    125124}
    126 add_shortcode( 'bartag', 'bartag_func' );
     125add_shortcode( 'commentsplus', 'gplus_comments_shortcode' );
    127126
    128127
Note: See TracChangeset for help on using the changeset viewer.