| bio | website | kristinachilds.com |
|---|---|---|
| location | Seattle | |
| age | ||
| visits | member for | 8 months |
| seen | Jan 9 at 17:54 | |
| stats | profile views | 43 |
|
Dec 14 |
accepted | Masking logout URL |
|
Dec 14 |
comment |
Masking logout URL Fantastic, thank you! I realize you can never hide wordpress completely, but there are certainly simple things you can do to make it less obvious for security reasons. I have a client who has recently been repeatedly hacked by bots, so I have been digging deeper into security precautions and anonymizing wordpress as much as possible. |
|
Dec 14 |
asked | Masking logout URL |
|
Dec 14 |
comment |
How to move wp-admin login page to another location? It's absolutely a good idea. Hiding the fact that your site is driven by wordpress discourages people from trying to hack the core structure. If I was trolling for wordpress blogs and www.site.com/wp-login.php and came up with a 404 error I would move on without trying to break through known php exploits. Every bit of security helps make your site that much more bulletproof. |
|
Dec 14 |
comment |
How to order by post meta name in wp admin? Post titles are supposed to be sortable by default... you shouldn't have to do anything special to make that work. Mind posting your cpt/taxonomy registration code? |
|
Dec 14 |
revised |
Remove custom post type slug from URL deleted 2 characters in body |
|
Dec 13 |
comment |
Two WordPress sites sharing the same content exactly what i was thinking. you can define your site URL (without futzing with rewrites) and where your site actually lives. |
|
Dec 13 |
comment |
Two WordPress sites sharing the same content Will site B need to be edited on it's own as well? Or is it strictly a mirror with no unique administration? |
|
Dec 13 |
answered | How to order by post meta name in wp admin? |
|
Dec 13 |
answered | A single category with a specific permalink structure differing from the standard set for the rest of the site |
|
Dec 13 |
comment |
Custom Post Type & Role Capabilities I was able to get this halfway by using the traditional $admin_role = get_role( 'administrator' ); $admin_role->add_cap( '{ability}_clubs' ); registration, but would still like to know why this works for one cpt but not the other. What's funny is that this traditional registration did not work for the previous CPT when I tried it, which is why I had to seek out this alternative in the first place. |
|
Dec 13 |
answered | Remove custom post type slug from URL |
|
Dec 12 |
revised |
Custom Post Type & Role Capabilities deleted 3 characters in body |
|
Dec 12 |
revised |
Custom Post Type & Role Capabilities typo |
|
Dec 12 |
asked | Custom Post Type & Role Capabilities |
|
Dec 6 |
revised |
Detect if request is coming from wordpress conditional statement deleted 2 characters in body |
|
Dec 6 |
revised |
Detect if request is coming from wordpress conditional statement deleted 118 characters in body |
|
Dec 6 |
revised |
Detect if request is coming from wordpress conditional statement added 624 characters in body |
|
Dec 6 |
accepted | Detect if request is coming from wordpress conditional statement |
|
Dec 6 |
comment |
Detect if request is coming from wordpress conditional statement Perfect! I linked it to the old index file with require ('/home/index.html');. I'll put the final code in my question for anyone else with this problem. |