LoginSignup
0
0

More than 5 years have passed since last update.

wordpressの関数をシングル、ダブルクオーテーション内で使用する際のポイント

Posted at

自分用にメモ。

bloginfoを使って次の記事のリンク画像を取得する際、get_bloginfo内部のダブルクオーテーションとその外のシングルクオーテーションがかぶってしまった。


<?php next_post_link("%link",'<img src="get_bloginfo("url")/img/single/right-arrow-button.png" />') ?>

そこで、関数部分をシングルクオーテーションで括り、さらにピリオドを両側に記入することで正常に表示された。


<?php next_post_link("%link",'<img src="' . get_bloginfo("url") . '/img/single/right-arrow-button.png" />') ?>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0