jbowshaw
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Oxygen] Oxygen Archive page change featured imageNevermind, I figured it out. Need to use the Featured Image on a post.
Forum: Fixing WordPress
In reply to: .htaccess (stop access from certain websites)i got it to work.
Put the rewrite conditions above the wordpress code like this.
RewriteEngine On
RewriteCond %{HTTP_REFERER} sogou\.com [NC,OR]
RewriteCond %{HTTP_REFERER} concrete\.twohundredpornfucksn\.net [NC,OR]
RewriteCond %{HTTP_REFERER} yandex\.ru [NC,OR]
RewriteCond %{HTTP_REFERER} pic\.sogou\.com [NC,OR]
RewriteCond %{HTTP_REFERER} twohundredpornfucksn\.net [NC]
RewriteRule .* – [L,F]# NOTE make sure last rewrite cond above has [NC] ONLY and not [NC,OR]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]</IfModule>
# END WordPress
Forum: Plugins
In reply to: php code to add html editor to pluginSOLVED.
Just downloaded tinymce. Put in a subdirectory off of my plugin.
Copied in the javascript code and bingo bango I have a wysiwyg
text editor. much better than the wordpress one.I do believe wordpress should have a standard function call
to bring in its html editor.of course what do i know.
Forum: Plugins
In reply to: php code to add html editor to pluginThis must be something really difficult to do.
I found the_editor() works sort. The javascript doesn’t work
to toggle in and out of html mode. Nor do the buttons to add media
files.Does anyone have a solution or am I falling on deaf ears?
Forum: Plugins
In reply to: php code to add html editor to pluginAnyone have a answer to this question?
using wordpress wysiwyg html editor on plugin page
instead of using a textarea form field?J