0

テーブルからコメントを取得していwp_commentsますが、ブラウザに表示すると、代わりに絵文字が表示されず、コメントにはいくつかの絵文字があります。Using Smiliesを読み、適切なアイコンなどに置き換えるカスタム関数を作成したいと思います。:):D:)

しかし、方法がわかりませんか?

4

1 に答える 1

3

このページでは、絵文字/スマイリーをグラフィックとして使用する方法について説明します。

http://codex.wordpress.org/Using_Smilies

  • 管理パネルに移動します
  • [設定] -> [書き込み] を選択します
  • 「:-) や :-P などの絵文字をディスプレイ上のグラフィックに変換する」にチェックを入れます。

顔文字を変換する wp-script を探している場合は、次の場所を参照してください。

httpdocs/wp-includes/formatting.php

~line: 1715

/**
 * Convert one smiley code to the icon graphic file equivalent.
 *
 * Looks up one smiley code in the $wpsmiliestrans global array and returns an
 * <img> string for that smiley.
 *
 * @global array $wpsmiliestrans
 * @since 2.8.0
 *
 * @param string $smiley Smiley code to convert to image.
 * @return string Image string for smiley.
 */
function translate_smiley($smiley) {

...

/**
 * Convert text equivalent of smilies to images.
 *
 * Will only convert smilies if the option 'use_smilies' is true and the global
 * used in the function isn't empty.
 *
 * @since 0.71
 * @uses $wp_smiliessearch
 *
 * @param string $text Content to convert smilies from text.
 * @return string Converted content with text smilies replaced with images.
 */
function convert_smilies($text) {
于 2013-04-30T08:46:20.890 に答える