wordpress文章的各种调用

调用文章标题:

调用文章内容:

调用文章摘要:

调用作者姓名:

调用文章发布时间:

调用作者的Gravatar头像:

调用特色图片:

调用固定链接:
the_post_thumbnail(); // 默认显示缩略图
the_post_thumbnail(‘thumbnail’); // 显示缩略图
the_post_thumbnail(‘medium’); // 显示中等尺寸
the_post_thumbnail(‘large’); // 显示大尺寸
the_post_thumbnail( array(200,200) ); // 自定义尺寸
对特色图像大小进行设置
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
}
if(function_exists('set_post_thumbnail_size')){
set_post_thumbnail_size(231,160,true);
}
if ( function_exists( 'add_image_size' ) ) {
add_image_size( 'big', 432, 234, true );
add_image_size( 'car', 179, 109, true );
}

调用文章的第一幅图
在functions.php中加入代码:

function catch_that_image() {

  global $post, $posts;

  $first_img = '';

  ob_start();

  ob_end_clean();

  $output = preg_match_all('//i',

matches);

  $first_img = $matches [1] [0];

  if(empty($first_img)){ //Defines a default image

    $first_img = "/images/default.jpg";

  }

  return $first_img;
}

?>
在要调用图片的地方加入代码:

你可能感兴趣的:(wordpress文章的各种调用)