PHP WordPress使用固定链接和CSS拉出特色图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress使用固定链接和CSS拉出特色图像相关的知识,希望对你有一定的参考价值。

// Add to functions.php theme support for Featured Images if your theme does not already include it.
if (function_exists('add_theme_support')) {
    add_theme_support('post-thumbnails');
    add_image_size('index-categories', 150, 150, true);
    add_image_size('page-single', 575, 200, true);
}

Call image using timthumb from a page or post by adding to page.php, single.php, home.php or index.php.

 <?php if (has_post_thumbnail( $post->ID )): ?>
   <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );  ?>
   <img class="featuredImage" src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php echo $image[0]; ?>&w=576&h=200&zc=1" alt="<?php the_title(); ?>" />
<?php endif; ?>

CSS
Note: image tag has the class .featuredImage. Style as needed:
img.featuredImage{border: 2px solid #ccc;padding: 10px;}

以上是关于PHP WordPress使用固定链接和CSS拉出特色图像的主要内容,如果未能解决你的问题,请参考以下文章

PHP 从wordpress外面拉出帖子(以正确的方式!)

wordpress底部链接怎么去掉?

wordpress固定链接的使用固定链接的一些问题

wordpress设置“固定链接”后,页面404错误的解决方法

NGINX +带Rails的乘客+ Wordpress固定链接

如何在wordpress中链接外部css? [关闭]