Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルは画像の前に表示され、スタイルは設定されていません。それを修正する方法は?
$tytul = wp_title(); echo '<img class="icon" src="http://site.pl/site/icon.png" /><h2>'.$tytul.'</h2>';
wp_title()コンテンツ自体を印刷しますが、返送しないのでecho wp_title()、エコーからは何も表示されませんが、タイトルは印刷されます。を使用するvar_dump(wp_title())と、タイトルが表示され、結果はになりNULLます。あなたが欲しいものは:
wp_title()
echo wp_title()
var_dump(wp_title())
NULL
echo '<img class="icon" src="http://site.pl/site/icon.png" /><h2>'; wp_title(); echo '</h2>';