Plugin Directory

Changeset 369582


Ignore:
Timestamp:
04/06/2011 02:59:21 PM (15 years ago)
Author:
Patrick Brouwer
Message:

v1.7.1

Location:
simple-portfolio/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simple-portfolio/trunk/extends/xml.php

    r365690 r369582  
    149149                <?php endif; endforeach; ?>
    150150                </meta>
    151                 <featured_image><![CDATA[<?php $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large'); echo $large_image_url[0]; ?>]]></featured_image>
     151                <featured_image>
     152                    <?php foreach (array('thumbnail', 'medium', 'large', 'full') as $image_size): $image = wp_get_attachment_image_src(get_post_thumbnail_id(), $image_size); ?>
     153                        <<?php echo $image_size; ?> width="<?php echo $image[1]; ?>" height="<?php echo $image[2]; ?>" src="<?php echo $image[0]; ?>" />
     154                    <?php endforeach; ?>
     155                </featured_image>
    152156            </page>
    153157        <?php endwhile; ?>
  • simple-portfolio/trunk/readme.txt

    r365690 r369582  
    66Requires at least: 2.8
    77Tested up to: 3.1
    8 Stable tag: 1.7
     8Stable tag: 1.7.1
    99
    1010Simple Portfolio allows you to easily manage your portfolio. You can append snippets, youtube and media from the built-in Media Library to projects.
     
    8383== Changelog ==
    8484
     85= 1.7.1 =
     86Xml update, added more featured image formats.
     87
    8588= 1.7 =
    8689The xml format is slightly changed. When navigating to site/slug.xml the menus are now recursive instead of listed under each other.
  • simple-portfolio/trunk/simple-portfolio.php

    r365690 r369582  
    44Plugin URI: http://projects.inlet.nl/simple-portfolio-wordpress3/
    55Description: Manage your portfolio projects easily and use them everywhere you like. This plugin is very simple to use, it doesn't bother you with a complex user interface. Add project specific information, for example what your role was and the team you've worked in, etc. Add any media you like: YouTube, code snippets or any media from your wordpress built-in Media Library. Wonder how it works? Watch the <a href="http://www.inlet.nl">screencast</a>.
    6 Version: 1.7
     6Version: 1.7.1
    77Author: Patrick Brouwer (Inlet)
    88Author URI: http://www.inlet.nl
Note: See TracChangeset for help on using the changeset viewer.