Bonjour à tous, et merci d'avance pour votre aide.
Donc je réalise actuellement une nouvelle version pour mon portfolio et j'utilise pour la page de mes travaux un système de filtrage en JQuery comme ceci [url=http://tutorials.vinnysingh.co/quicksand/]http://tutorials.vinnysingh.co/quicksand/[/url]
[url=http://tutorials.vinnysingh.co/quicksand/][/url]
Donc j'utilise un custom-post-type projet avec une image à la une qui sert d'image pour ma lightbox, d'un titre, d'un extrait, et d'une url.
Mon problème est que j'ai des fichiers flash dans mes réalisations et j'aimerai les intégré via la partie projet comme les autres, mais je ne peut pas car l'image à la une n'accepte pas les swf et je ne sais pas comment faire pour les fichiers swf l’idéal serait peut être de pouvoir mettre une miniature via l'image à la une et récupéré le fichier flash du autre facon enfin voila je suis perdu ;).
Enfin j’espère que j'ai été assez clair c'est pas évident à expliquer je vous post le code source de ma page portfolio merci à vous :
[code]<?php / Template Name: Portfolio / ?>
<?php get_header(); ?>
<!-- #content BEGIN -->
<div id="content" role="main">
<nav id="secondary-nav">
<ul id="portfolio-filter" class="filter clearfix">
<li class="active"><a href="javascript:void(0)" class="all">Tous</a></li>
<?php
// Get the taxonomy
$terms = get_terms('filter', $args);
// set a count to the amount of categories in our taxonomy
$count = count($terms);
// set a count value to 0
$i=0;
// test if the count has any categories
if ($count > 0) {
// break each of the categories into individual elements
foreach ($terms as $term) {
// increase the count by 1
$i++;
// rewrite the output for each category
$term_list .= '<li><a href="javascript:void(0)" class="'. $term->slug .'">' . $term->name . '</a></li>';
// if count is equal to i then output blank
if ($count != $i)
{
$term_list .= '';
}
else
{
$term_list .= '';
}
}
// print out each of the categories in our new format
echo $term_list;
}
?>
</ul>
</nav>
<ul id="portfolio-list" class="filterable-grid clearfix">
<?php
// Set the page to be pagination
//$paged = get_query_var('paged') ? get_query_var('paged') : 1;
// Query Out Database modif
$wpbp = new WP_Query(array( 'post_type' => 'portfolio', 'posts_per_page' =>'-1' ) );
?>
<?php
// Begin The Loop
if ($wpbp->have_posts()) : while ($wpbp->have_posts()) : $wpbp->the_post();
?>
<?php
// Get The Taxonomy 'Filter' Categories
$terms = get_the_terms( get_the_ID(), 'filter' );
if ( $terms && ! is_wp_error( $terms ) ) :
$links = array();
foreach ( $terms as $term )
{
$links[] = $term->name;
}
$links = str_replace(' ', '-', $links);
$tax = join( " ", $links );
else :
$tax = '';
endif;
?>
<?php
$large_image = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'fullsize', false, '' );
$large_image = $large_image[0];
$infos = get_post_custom_values('_url');
$excerpt = get_the_excerpt();
?>
<?php
//Apply a data-id for unique indentity,
//and loop through the taxonomy and assign the terms to the portfolio item to a data-type,
// which will be referenced when writing our Quicksand Script
?>
<li class="portfolio-item" data-id="id-<?php echo $count; ?>" data-type="<?php foreach ($terms as $term) { echo strtolower(preg_replace('/\s+/', '-', $term->name)). ' '; } ?>">
<?php
// Check if wordpress supports featured images, and if so output the thumbnail
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) :
?>
<?php // Output the featured image ?>
<div class="thumb">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail( array(800, 600) ); ?></a>
</div>
<?php endif; ?>
<?php // Output the title of each portfolio item ?>
<div class="legend">
<h3><a rel="prettyPhoto[gallery]" href="<?php echo $large_image ?>"><?php the_title(); ?></a></h3>
<?php if(!empty($excerpt)){ ?>
<p class="excerpt">
<?php echo get_the_excerpt(); ?></p>
<?php } else { ?>
<?php } ?>
<p class="links">
<?php if(!empty($infos)){ ?>
<a href="<?php echo $infos[0]; ?>" target="_blank">Visiter le site</a>
<?php } else { ?>
<?php } ?>
<a rel="prettyPhoto[gallery]" href="<?php echo $large_image ?>">Aperçu</a></p>
</div>
</li>
<?php $count++; // Increase the count by 1 ?>
<?php endwhile; endif; // END the Wordpress Loop ?>
<?php wp_reset_query(); // Reset the Query Loop?>
</ul>
</div><!-- #content END -->
<?php get_footer(); ?>[/code]
Ma configuration WP actuelle