テーブルからコメントを取得していwp_comments
ますが、ブラウザに表示すると、代わりに絵文字が表示されず、コメントにはいくつかの絵文字があります。Using Smiliesを読み、適切なアイコンなどに置き換えるカスタム関数を作成したいと思います。:)
:D
:)
しかし、方法がわかりませんか?
テーブルからコメントを取得していwp_comments
ますが、ブラウザに表示すると、代わりに絵文字が表示されず、コメントにはいくつかの絵文字があります。Using Smiliesを読み、適切なアイコンなどに置き換えるカスタム関数を作成したいと思います。:)
:D
:)
しかし、方法がわかりませんか?
このページでは、絵文字/スマイリーをグラフィックとして使用する方法について説明します。
http://codex.wordpress.org/Using_Smilies
顔文字を変換する 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) {