你可以试试这个。让我们把以下代码放在文件的末尾functions.php
关于主题或子主题。
add_action(\'wp_head\', \'custom_show_table_on_download_page\', 20);
function custom_show_table_on_download_page() {
if(is_single()){
echo \'<style type="text/css">.dpage {display: none !important;}</style>\';
}
}