私はwordpressプラグインを実行していますが、いくつか問題があります。PHPはiframeにロードされていません
私はこのコードをすべてポストで使用すると問題なく動作します。
<iframe width="362" height="395" src="http://website.comm/<?php
if (0 != get_current_user_id()) {
the_author_meta('user_description', get_current_user_id());
} else {
echo 'Not logged in user';
}
?>" frameborder="0"></iframe>
しかし、私はエラーエン得ることプラグインで同じコードを使用しようとします。 プラグインはPHPコードのために[psfd_php] [/ psfd_php]を使用しています。
<iframe width="362" height="395" src="http://website.comm/[psfd_php]
if (0 != get_current_user_id()) {
the_author_meta('user_description', get_current_user_id());
} else {
echo 'Not logged in user';
}
[/psfd_php]" frameborder="0"></iframe>
私が手出力がこれです。
[psfd_php]
if (0 != get_current_user_id()) {
the_author_meta('user_description', get_current_user_id());
} else {
echo 'Not logged in user';
}
[/psfd_php]
私はその後、私はエラーを取得していないのiframeコードなしで同じコードを使用しようとします。 何か問題があります。
この意味は? 正しいコードを教えてもらえますか?
Click here for the original discussion on wordpress.org/support。
2回目の試行ではどのようなエラーが発生しますか?タグ属性に挿入するときに、あなたの '' user_description''フィールドの内容に注意する必要があります。 '' 'char ''の存在によってプロパティ宣言が閉じられる – Kaddath
プラグインとは何ですか?URL? – montrealist
エラーは最初の投稿にあります。 ''これは純粋なコードです。 このように:https:/ /imgur/OyGRTj2 プラグイン:https://wordpress.org/support/topic/allow-php/#post-9645284 – ANdy