php 您可以在您的functions.php中添加一些PHP来修改WooThemes模板的默认功能。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 您可以在您的functions.php中添加一些PHP来修改WooThemes模板的默认功能。相关的知识,希望对你有一定的参考价值。
<?php
/**
* Modify the default Features by WooThemes template
*/
function my_features_item_template( $tpl, $args ) {
$tpl = str_replace( '%%IMAGE%%', '<div class="feature-icon">
%%IMAGE%%
<div class="animation animation-1"></div>
<div class="animation animation-2"></div>
</div>', $tpl );
return $tpl;
}
add_filter( 'woothemes_features_item_template', 'my_features_item_template', 10, 2 );
以上是关于php 您可以在您的functions.php中添加一些PHP来修改WooThemes模板的默认功能。的主要内容,如果未能解决你的问题,请参考以下文章
雷林鹏分享:PHP 安装
如果在您的服务器上启用了 PATH_INFO,请检查 PHP?
Underscores主题404.php不显示?
WooCommerce 电子邮件模板自定义
如何在URL中带有特定字符串的页面/帖子中执行短代码?
为啥告诉您的服务器将 HTML 解析为 PHP 是一个坏主意? [关闭]