m4z1nh0
Forum Replies Created
-
Forum: Hacks
In reply to: help with post typeAnyone?
Forum: Hacks
In reply to: help with post typeUnfortunately it did not work, showed the latest blog posts that have not reported the monster post taxonomy used.
Triple P, below the code that I use today to demonstrate the post related post, would modify custom pora post? would be very grateful if you can.
Thanks for the help so far.
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Hacks
In reply to: help with post typeAnyone?
Forum: Hacks
In reply to: help with post typeAnyone?
Forum: Plugins
In reply to: Show 5 post_tag added or updated recentlyUp
Forum: Themes and Templates
In reply to: Help with templateI need help.
Forum: Themes and Templates
In reply to: Help with templateI need help.
Forum: Themes and Templates
In reply to: Help with templateI have no experience overall with php not know how to edit the code to display the image did not have a home.
Forum: Plugins
In reply to: [Plugin: Taxonomy Images BETA] Images and link in postThank mfields gave correctly, perfect.
Longer had a code that tried to edit most failed, it can also help would be very grateful.
<?php
$backup = $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
‘tag__in’ => $tag_ids,
‘post__not_in’ => array($post->ID),
‘showposts’=>9, // Number of related posts that will be shown.
‘caller_get_posts’=>1
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo ‘<h3>Outros Vídeos</h3>- ‘;
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<div id=”singlethumbA”>
<p align=”justify”>” rel=”bookmark” title=”Veja Também <?php the_title_attribute(); ?>”><img src=”<?php echo get_thumbnail($post->ID, ‘image_thumb’, true); ?>” alt=”image” width=”192″ height=”120″/></p>
<p align=”justify”>” rel=”bookmark” title=”Veja Também <?php the_title_attribute(); ?>”><?php the_short_title(”, ‘…’, true, ’35’) ?></p>
</div>
<?php
}
echo ‘‘;
}
}
$post = $backup;
wp_reset_query();
?>It shows post related statement based on tags, I think custom taxonomy would be best for my use.
Again thank you for your help.
Forum: Plugins
In reply to: [Plugin: Taxonomy Images BETA] Images and link in postThanks mfields
It worked, I would like to know how to display images of custom_taxonomies, I created two, actor and website, where I have to edit the images appear to show the images of these custom_taxonomies?
Thank you for your help.