mephiato73
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Php based program inside wordpressI have no experience with iframes as such, so I wouldn’t know. What is it that you want to accomplish?
I have a simple calender script that I integrated into a custom plugin I made (http://www.calculateovulation.net/ovulation-calculator).
In this case the calendar sits as a function that is called from the plugin with necessary variables to output the desired information.
Forum: Fixing WordPress
In reply to: Hook that is called when user visit blogI’m aware of that, but I thought that just like
wp_authenticateis called when the user is logging in there would be a hook that is activated when a returning user is identified by cookies?The standard duration of WP cookies are something like 1 year, isn’t it? So a user would in theory only need to log in once per year.
Anyway, I might just go with your suggestion and call the function for every page view.
Thnks
Forum: Fixing WordPress
In reply to: Hook that is called when user visit blogThat’s an idea of course. But I don’t want to call the function for every page view if avoidable.
Forum: Fixing WordPress
In reply to: Hook that is called when user visit blogTTT
Forum: Fixing WordPress
In reply to: Adding An External Link To The WordPress MenuEdit your header.php and look for this line:
<?php wp_list_pages('title_li=&depth=1&sort_column=menu_order');?>and after this add
<li><a href="http://yourdomain.com/path-to-forum">Forum</a></li>That should do it.
Forum: Fixing WordPress
In reply to: Php based program inside wordpressI would make it a plugin and add a filter to call it from inside posts and pages.
Depending on what you want it to do it might be very easy, or slightly more work.