删除<a>
仅teg使用<?php the_title(); ?>
在h1 teg中,另一个下面的代码加载项函数。php
add_action(\'wp_head\' , \'remove_post_list_title_links\');
function remove_post_list_title_links() {
?>
<script id="remove-links-in-title" type="text/javascript">
jQuery(document).ready(function($) {
$(\'.entry-title\').each(function() {
var $title_link = $(\'a[rel="bookmark"]\' , $(this)),
$title_text = $title_link.text();
$title_link.remove();
$(this).prepend($title_text);
});
});
</script>
<?php
}