AirRaidAaron
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin that pulls data from another siteBump
Forum: Fixing WordPress
In reply to: Plugin Update Notification ProblemsThank you, I was hoping it was something on my end. I used the resetting the plugin folder link and this showed me the problem. Slickr Flickr needed an update but for some reason was not registering properly. Once I disabled all, it showed up.
Thank you!
What do you mean by ‘authentication’???
I want to use the WordPress user authentication cuase it’s much better than what I could write. It’s much easier to let users register/change passwords/info with the WordPress build in functions. I have something like this on my php page:
// If no user account…
if ($current_user->ID == 0) {
echo ‘<h1>Go register (or login), you big dummy!</h1>’;
exit();
}So using the $current-user class is awesome. I just want the other navigation, css… etc stuff to be able to be used as well.
Thanks!
Let’s just make it as simple as possible. Let’s say I have a php page that does this:
<?php
echo ‘hello world’;
?>How can I use the WordPress look and feel with authentication for this page? I use the wordpress as my main site. I like to use it for content and articles but I had already built the site by hand many years earlier. It’s easy to strip away all of my formatting, but switching to the wordpress authentication is the main goal since wp does that much better than I could do.
At the same time, i want the same menus and stuff liek that available on my custom php pages.
Thanks!