Title: No PHP?
Last modified: August 21, 2016

---

# No PHP?

 *  [VortexSpin](https://wordpress.org/support/users/vortexspin/)
 * (@vortexspin)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/no-php-2/)
 * I need to be able to use PHP functions inside the html snippet. Looks like that
   isn’t possible?
 * [http://wordpress.org/plugins/blog-in-blog/](http://wordpress.org/plugins/blog-in-blog/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [rbtvance](https://wordpress.org/support/users/rbtvance/)
 * (@rbtvance)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/no-php-2/#post-4403669)
 * Yes, I agree, that would have solved my problem too. There’s only like twenty
   template tags available and I’d like to be able to just insert PHP to achieve
   something like %post_thumbnail_url%. But I can’t do so, because it only supports
   HTML.
 *  [Aleksandar Urošević](https://wordpress.org/support/users/urkekg/)
 * (@urkekg)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/no-php-2/#post-4403689)
 * I don’t know what you trying to achieve, but it’s easy to implement processing
   of PHP from templates. That is just security hole, but never mind 🙂
 * Open file blog-in-blog.php, find line `return $template;` (line 539) and insert
   above that line code:
 *     ```
       ob_start();
       eval("?>$template<?php ");
       $template = ob_get_contents();
       ob_end_clean();
       ```
   
 * Cheers

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘No PHP?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/blog-in-blog.svg)
 * [Blog-in-Blog](https://wordpress.org/plugins/blog-in-blog/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/blog-in-blog/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/blog-in-blog/)
 * [Active Topics](https://wordpress.org/support/plugin/blog-in-blog/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/blog-in-blog/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/blog-in-blog/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [Aleksandar Urošević](https://wordpress.org/support/users/urkekg/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/no-php-2/#post-4403689)
 * Status: not resolved