什么是wordpress文章形式?

若您的wordpress主题支持这种形式,那么在wordpress发布文章按钮侧栏发布文章的时候可以选择视频格式,图片格式,文字格式等等。之所以有这些文章格式,只是为了美观,或者使文章看起来更得体一点。可惜的一点是wordpress提供的这几种形式是固定的,不能自己定义添加。

wordpress主题添加文章格式

如果你的主题不支持文章格式,首先你需要在functions.php中添加如下类似代码让你的主题支持该功能,wordpress支持以下十个文章格式:

1、standard:只是一个普通的文章没有什么特别的东西。
2、aside:类似于一个facebook的更新。
3、link:链接到外部网站。
4、image:只是一个简单的图像,没有什么巨大的。
5、quote:引用。
6、status:一个简短的状态更新,类似于微博。
7、video:一个视频。
8、audio:音频文件。
9、chat:全文聊天或使用插件一个客舱。

在function.php中添加如下代码

add_theme_support( 'post-formats', array( 'aside', 'chat','gallery','image','link', 'quote', 'sta

在页面和自定义文章页面添加

//add post-formats to post_type 'page'

add_post_type_support( 'page', 'post-formats' );

// add post-formats to post_type 'my_custom_post_type'

add_post_type_support( 'my_custom_post_type', 'post-formats' );

文章形式的使用

添加下面的代码到你的single.php中:

<?php get_template_part( 'content', get_post_format() ); ?>

然后在你的主题中创建php文件,文件的命名为content-{post-format}.php,例如:content-video.php and content-audio.php

最后需要创建一个content.php文件,这个文件的作用是找不到定义的文件时找此文件,也就是说这是个默认文件。

自定义文章形式

也可以使用自定义文章的形式,不过还是只能选那十项,在主题中创建好single-video.php文件,在function.php加入以下代码,发表文章的时候选择视频,试试看看效果吧。

add_action('template_include', 'load_single_template');

function load_single_template($template) {

$new_template = '';

// single post template

if( is_single() ) {

global $post;

// template for post with video format

if ( has_post_format( 'video' )) {

// use template file single-video.php for video format

$new_template = locate_template(array('single-video.php' ));

}

}

return ('' != $new_template) ? $new_template : $template;

}