Changeset 369582
- Timestamp:
- 04/06/2011 02:59:21 PM (15 years ago)
- Location:
- simple-portfolio/trunk
- Files:
-
- 3 edited
-
extends/xml.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
simple-portfolio.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-portfolio/trunk/extends/xml.php
r365690 r369582 149 149 <?php endif; endforeach; ?> 150 150 </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> 152 156 </page> 153 157 <?php endwhile; ?> -
simple-portfolio/trunk/readme.txt
r365690 r369582 6 6 Requires at least: 2.8 7 7 Tested up to: 3.1 8 Stable tag: 1.7 8 Stable tag: 1.7.1 9 9 10 10 Simple Portfolio allows you to easily manage your portfolio. You can append snippets, youtube and media from the built-in Media Library to projects. … … 83 83 == Changelog == 84 84 85 = 1.7.1 = 86 Xml update, added more featured image formats. 87 85 88 = 1.7 = 86 89 The 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 4 4 Plugin URI: http://projects.inlet.nl/simple-portfolio-wordpress3/ 5 5 Description: 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 6 Version: 1.7.1 7 7 Author: Patrick Brouwer (Inlet) 8 8 Author URI: http://www.inlet.nl
Note: See TracChangeset
for help on using the changeset viewer.