Home >php教程 >php手册 >wordpress如何自定义字段输出代码

wordpress如何自定义字段输出代码

PHPz
PHPzOriginal
2016-06-13 10:58:25867browse

 

这篇文章主要介绍了wordpress如何自定义字段输出代码,有一定的参考价值,感兴趣的朋友可以参考一下。

ID, 'images', false); //一会你要添加的自定义字段 images
                if($images){ //开始循环同名自定义字段
                foreach ($images as $image) {
                        $fullvalue = explode("|", $image);
                        $post_img=$fullvalue[0]; //图片地址
                        $post_url=$fullvalue[1]; //图片对应的文章地址
                        $img_info=$fullvalue[2]; //图片信息
?>
   " _href="">  " alt="<?php the_title(); ?>" title="<?php the_title(); ?>" _src=""/>

这个是幻灯片的实例代码,可以在这个基础上修改自己需要的样式,循环输出。

【相关教程推荐】

1. php编程从入门到精通全套视频教程
2. php从入门到精通 
3. bootstrap教程

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn