9

このスニペットを使用しています

<a href='<?php the_permalink() ?>' title='<?php echo strip_tags(the_excerpt()); ?>

ellipses<p>タグ、その他shortcodes、をすべて削除するつもりですlinksが、まったく機能しません。

アンカーにカーソルを合わせると<p>、抜粋にラップされたものや、他のタグや URL リンクが表示されます。私は何を間違っていますか、それを機能させるために何をしなければなりませんか?

4

2 に答える 2

4

これは、 the_excerpt() がすぐに抜粋を出力するためです。maninpute できる文字列として返す get_the_excerpt() が必要です ( http://codex.wordpress.org/Function_Reference/get_the_excerpt )。

wp_filter_nohtml_kses() ( http://codex.wordpress.org/Function_Reference/wp_filter_nohtml_kses )も使用できます。

何かのようなもの:

$title = wp_filter_nohtml_kses(get_the_excerpt());
于 2013-07-31T21:26:10.933 に答える