我在 php 文件中有这样的一行:
<a class="hide-if-no-js" onclick="findPosts.open( 'media[]','<?php echo $post->ID ?>' ); return false;" href="#the-list">Attach</a>
我需要将此行写为 php 函数中的字符串,我试过这个:
$output .="<a class='hide-if-no-js' onclick='findPosts.open( 'media[]','$id' ); return false;' href='#the-list'>'$linktext'</a>";
似乎围绕“媒体 []”的引用是错误的,并且使这一行的 html 混乱。有人可以帮我纠正吗?