新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在WordPress写文章的时候,如果想插入一点简单的脚本,例如: javascript:tucao() 或者 onclick=”tucao()” 插入这样的代码,但是会被WordPress的安全机制自动过滤成: javascript:void(0) 和 onclick=”" 那如何解决以上问题呢?以下是解决方法:1.打开wp-include目录下的formatting.php文件,注释掉大概第2321行 $safe_text =str_replace(“n”,‘n’,addslashes( $safe_text ));2.上传后,刷新后台,保存刚才保存不上的文章。
大武口网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设公司等网站项目制作,到程序开发,运营维护。创新互联2013年开创至今到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
结构简单/色彩分明,条理清晰,这样的主题都可以称为WP的简约主题。
第一步,参考你给的网址,创建页面及模板
第二步,在你的页面模板文件的循环内部,添加如下代码:
$product_category = array('上衣', '裤子', '鞋子');
foreach ($product_category as $key = $category) {
$products = wc_get_products( array(
'status' = array('publish'),
'limit' = 0,
'category' = array( $category )
) );
//var_dump($products);
// html输出
if ( count($products) ) :
printf( 'h2 class="category-name"%s/h2', $category);
foreach ($products as $key = $product) {
printf('h3 class="product-name"%s/h3', get_the_title( $product-id ) );
}
endif;
}
WordPress文本小工具默认是不支持支持简码(shortcodes)和PHP代码的,要让它支持,只需将下面的代码添加到当前主题的 functions.php 文件即可:
//让文本小工具支持简码
add_filter('widget_text', 'do_shortcode');
//让文本小工具支持PHP代码
add_filter('widget_text','execute_php',100);
function execute_php($html){
if(strpos($html,""."?php")!==false){
ob_start();
eval("?"."".$html);
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}