php 缩略图(WP)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 缩略图(WP)相关的知识,希望对你有一定的参考价值。

<!--Lo indicado es poner el código al principio del layout y desde luego, siempre, antes de que invoquemos cualquiera de sus variables -->

<?php if (has_post_thumbnail()) : ?>
<?php
  $imagen = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large'); // full= tamaño original, large por defecto (640x640 max), medium por defecto (300x300 max), thumbnail por defecto (150x150 max)
  $width = get_option('thumbnail_size_w'); //get the width of the thumbnail setting
  $height = get_option('thumbnail_size_h'); //get the height of the thumbnail setting
  $image_title = get_post(get_post_thumbnail_id())->post_title; //The Title
  $image_caption = get_post(get_post_thumbnail_id())->post_excerpt; //The Caption
  $image_description = get_post(get_post_thumbnail_id())->post_content; // The Description

  $ruta_imagen = $imagen[0];
?>
<?php endif; ?>

以上是关于php 缩略图(WP)的主要内容,如果未能解决你的问题,请参考以下文章

php WP-镶嵌后的缩略图

php 缩略图(WP)

PHP wp获取缩略图网址

PHP PHP WP WordPress获取特色图片后缩略图

php WordPress中有缩略图的相关帖子(无插件)#wp #php

php WP Foto Vote - 上传Youtube视频时触发,Video addon解析视频缩略图