不敢相信,没有标准的变通方法来限制相关产品部分的产品标题。到目前为止,我设法通过使用Woo title limit插件来限制所有其他页面的产品标题。
通过使用这个插件,我可以通过插入单个产品页面的限制来限制相关产品的标题,但这样也会影响单个产品的标题。因此,我认为最好的方法是为相关产品手动添加它。
我认为这是限制产品标题字符的标准化代码。
if ( strlen( $title ) > 60) { // Kicks in if the product title is longer than 60 characters
return substr( $title, 0, 60 ) . \'...\'; // Shortens it to 60 characters and adds ellipsis at the end
} else {
return $title; // If the title isn\'t longer than 60 characters, it will be returned in its full length without the ellipsis
}
现在,问题是在哪里可以应用此代码?我不能简单地将此代码粘贴到相关的。php页面对吗?我的指导我首先需要解决哪些问题?