Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
Thanks Josue! Is this postid-xx class a special Enfold’s Feature or it is part of WordPress vanilla code?
Best Regards,
AgustinJune 19, 2013 at 5:25 pm in reply to: Title under featured image in Related Posts: right code? #125311Sorry Colorit2,
The right code for the new line should be
$output .= " <br /><a href='".get_permalink($related_post->ID)."'>".$related_post->post_title."</a>";
I think I have done an error copying the code.
Chao!
Hi! I understood finally how related-posts.php works and was able to do it by myself. I write here what I did in case someone wants also the titles under the featured images.
In related-posts.php I added this line:
I searched for:
Code:$output .= “<div class=’$post_class $extra relThumb relThumb”.$count.” post-format-“.$format.” related_column’>n”;
$output .= ” ID).”‘ class=’relThumWrap noLightbox’>n”;
$output .= ” <span class=’related_image_wrap’ data-avia-related-tooltip='”.$related_post->post_title.”‘>”;
$output .= $image;
$output .= ” <span class=’related-format-icon avia-font-entypo-fontello {$extra_class}’><span class=’related-format-icon-inner’>”.$avia_config[‘font_icons’][$format].”</span></span>”;
$output .= ” </span>”;
$output .= ” “;
$output .= “</div>”;and added this line before the last line:
Code:$output .= ” ID).”‘>”.$related_post->post_title.”“;Right now, it looks like that:
Code:$output .= “<div class=’$post_class $extra relThumb relThumb”.$count.” post-format-“.$format.” related_column’>n”;
$output .= ” ID).”‘ class=’relThumWrap noLightbox’>n”;
$output .= ” <span class=’related_image_wrap’ data-avia-related-tooltip='”.$related_post->post_title.”‘>”;
$output .= $image;
$output .= ” <span class=’related-format-icon avia-font-entypo-fontello {$extra_class}’><span class=’related-format-icon-inner’>”.$avia_config[‘font_icons’][$format].”</span></span>”;
$output .= ” </span>”;
$output .= ” “;
$output .= ” ID).”‘>”.$related_post->post_title.”“;
$output .= “</div>”;Have a nice day ;)
Hi!
Read this: https://kriesi.at/support/topic/xing-icon :)
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)