WordPress 将数组转换成代码
如何将打印出的数组转换成php代码: $code = var_export($array,true); $code = ‘<?php\n return ‘ . preg_replace(‘/stdClass::__set_state/’, ‘(object)’, $code) . ‘;’; file_put_contents(__DIR__ . ‘/data.array.php’, $code);
由于wordpress后台上传图片时会自动剪切,以是有些上传了gif特色图片后,在前台显示时是被剪切成了静态图片,这里K1源码网教大伙一个方式,将下面的代码整合到主题里:
WordPress 根据不同的文章/分类/页面等显示不同的边栏sidebar widget
有时候我们想让不同的分类页面显示不同的侧栏小工具、不同的文章显示不同的侧栏小工具、不同分类的文章页面显示不同的侧栏小工具等等,那么,可以使用Content Aware Sidebars 这个插件来实现。 插件地址:https://wordpress.org/plugins/content-aware-sidebars/ 插件可基于多个条件来显示对应的小工具,功能很强大哦~
if( get_the_post_thumbnail() ){ $thumb_url = get_the_post_thumbnail_url(); $thumb_low = strtolower($thumb_url); if (strpos($thumb_low, '.gif') === false) { $thumb_size = 'thumbnail'; } else { $thumb_size = 'full'; } the_post_thumbnail($thumb_size); }
就是在获取特色图片时(后台单独上传的特色图片)判断厥后缀然后设置其缩略图巨细为原图即可。
WordPress免插件集成ckplayer播放器
WordPress免插件集成ckplayer播放器,首先在ckplayer官网下载资源包,将ckplayer文件夹放入所使用主题里(确保wp-content/themes/motheme/ckplayer/ckplayer.js存在),然后添加代码如下: 在主题的functions.php添加以下代码 function MBThemes_ckplayer_scripts() { wp_enqueue_script( ‘ckplayer
评论(0)