• Resolved vscotch

    (@vscotch)


    Hello!

    if I put

    [insert_php]
    echo "Hello!";
    [/insert_php]

    I get the expected “Hello!”

    but if I do:

    [insert_php]
    echo "Hello!";
    foreach ($_GET as $key => $value) {
    }
    [/insert_php]

    then I get nothing while the code has no error. So I can’t run foreach? Or I’m missing something else?

    https://wordpress.org/plugins/insert-php/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author WillBontrager

    (@willbontrager)

    vscotch, it should work just fine.

    Putting this into my test installation:

    [insert_php]
    echo "Hello!";
    foreach ($_GET as $key => $value) {
    }
    [/insert_php]

    Yields:

    Hello!

    It’s doing what the code says to do.

    Verify you’re using the Text tab for editing rather than Visual. Otherwise, WordPress may insert BR tags or otherwise try to pretty up the code.

    Will

    Thread Starter vscotch

    (@vscotch)

    Verify you’re using the Text tab for editing rather than Visual

    Yep, that was the problem! Thank you very much for the great plugin!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Making this work’ is closed to new replies.