仅在规范页面中显示_content()中的表

时间:2018-12-25 作者:Ashija Pramod

请帮助我在规范页面上仅显示表

主页面https://www.printerdriverforwindows.com/hp-deskjet-ink-advantage-3700-driver

    <table style="height: 198px; width: autopx;">
<tbody>
<tr style="height: 20.8px;">
<td style="width: 333.283px; height: 20.8px; text-align: center;"><strong>Filename</strong></td>
<td style="width: 56.7167px; height: 20.8px; text-align: center;"><strong>Size</strong></td>
<td style="width: 195px; height: 20.8px; text-align: center;"><strong>Download</strong></td>
</tr>
  </tbody>
</table>
希望仅在下载页上显示表内容

正在使用<?php the_content(); ?>

显示全部内容

请帮忙

1 个回复
SO网友:Quang Hoang

你可以试试这个。让我们把以下代码放在文件的末尾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>\';
    }
}