insert link in wordpress editor greyout whole screen?

Looks like you need to update jQuery. You are running /*! jQuery v1.8.3 jquery.com | jquery.org/license */ and a very quick search of the error message text lead to this, posted five months ago– https://github.com/blueimp/jQuery-File-Upload/issues/1794–, and to the simple instructions “You need to upgrade to jquery-ui 1.9”. I would suggest updating your install as a … Read more

WordPress link to show popup box

There is more to it do you think but here’s a simple popup message sample I’ve created. Have a look at it and let me know if you need further help. For future reference: This sort of question should be asked at Stack Overflow!

How to link to specific part of a page in wordpress permalinks

Maybe this works, currently not tested. Only a idea to enhance for the custom var. Also I don’t the goal right. add_filter( ‘query_vars’, ‘add_custom_query_var’ ); function add_custom_query_var( $vars ) { $vars[] = ‘#’; return $vars; } A other hint is the link to the codex, to filter the rewrite of WP.

link header to homepage (for wp multisite)

A few issues- php tags are for interpolating between php/html, they can’t go within php statements. Also, the single quotes in bloginfo are closing your string, which is generating the error. Lastly, bloginfo will echo its value, which can’t go within an echo statement, you need to use get_bloginfo instead, or simpler, just use home_url(): … Read more