How to get around iframes with WordPress?

That would be more of a question for the makers of Wrike, not WordPress, since it depends on whether or not Wrike has APIs or some other way to access their data. A quick glance at their site reveals they do have an API – developers.wrike.com – you would create code that pulls the data … Read more

Can Angular be used in/with WordPress?

Logically, I think this can be done. There should be a way to integrate Angular along with WordPress for your SPA. You would have to use the wordpress REST API to connect them both though. Also, you would need to enqueue the scripts in functions.php for the same. Although I am not sure about running … Read more

Allow iframes from specific sites?

I’d register an embed handler with wp_embed_register_handler. This gives you the added benefit of being able to just copy and paste the url into the editor as well as seeing a preview of the iframe. add_action( ‘init’, ‘se238330_register_embed_handler’ ); function se238330_register_embed_handler() { wp_embed_register_handler( ‘joetek’, ‘#http://subdomain.yourdomain\.com/(.+)/?#i’, ‘wp_embed_handler_joetek’ ); } function wp_embed_handler_embed_name( $matches, $attr, $url, $rawattr ) … Read more

Updating parent themes vs. updating starter theme

You can enable child themes for any theme: http://codex.wordpress.org/Child_Themes If you want your parent theme based off another parent theme, for example you want a theme based off of Twitter bootstrap and apply any changes they make to your framework, without over-riding your changes, use revision control. Git Mercurial etc.

Using WordPress as a Framework

Most frameworks are specifically designed to easily handle a large range of applications, while WordPress is quite limited when it comes to using its API to create applications like the one you mentioned. If you want to compare WordPress as a PHP framework with existing popular frameworks, think of it as one of the worst … Read more