在Woocommerce中的单个产品简短描述下启用查看更多功能

时间:2018-04-15 22:13:47

标签: php wordpress woocommerce product hook-woocommerce

我正在寻找一种在产品说明中创建额外视图按钮的方法。

http://prntscr.com/j5pano

function et_excerpt_length($length) {
    return 220;
}
add_filter('excerpt_length', 'et_excerpt_length');

/* Add a link  to the end of our excerpt contained in a div for styling purposes and to break to a new line on the page.*/

function et_excerpt_more($more) {
    global $post;
    return '<div class="view-full-post"><a href="'. get_permalink($post->ID) . '" class="view-full-post-btn">View Full Post</a></div>;';
}
add_filter('excerpt_more', 'et_excerpt_more');

之前我尝试了很多代码,但它不起作用,有人可以帮助我,谢谢。

0 个答案:

没有答案