我有以下行删除帖子,但无法让css在那里工作。有人帮忙吗?
<?php if (current_user_can('edit_post', $post->ID)) echo "<a type="button" class="btn btn-primary btn-xs" href='" . wp_nonce_url( get_bloginfo('url') . Blockquote "/wp-admin/post.php?action=delete&post=" . $post->ID, 'delete-post_' . $post->ID) . "'onclick=\"return confirm('Are you sure?');\"> title="Delete"><i class="glyphicon glyphicon-remove"></i>​"?> </a>
答案 0 :(得分:1)
这是您的代码echo "<a type=";button;" class=";btn; btn-primary; btn-xs;"
...为什么; ? concat符号是点(。)
编辑问题后:
<?php
if (current_user_can('edit_post', $post->ID))
echo
"<a type='button' class='btn btn-primary btn-xs' href='" . wp_nonce_url( get_bloginfo('url') . Blockquote "/wp-admin/post.php?action=delete&post=" . $post->ID, 'delete-post_' . $post->ID) . "' onclick='return confirm('Are you sure?');'> title='Delete'><i class='glyphicon glyphicon-remove'></i>​</a>"
?>
尝试这种改变。
答案 1 :(得分:0)
使用以单引号开头的echo语句,以single结尾。 使用转义序列代替javascript引号 喜欢 /' 所有你都可以在快速编辑中运行这段代码。