| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 8 months |
| seen | Oct 28 '12 at 4:59 | |
| stats | profile views | 1 |
|
Sep 26 |
comment |
Put code into body tags near top, using a plugin no, someone else downvoted it without any explanation or comment (unless I did it inadvertently) |
|
Sep 25 |
comment |
Put code into body tags near top, using a plugin Giving a -1 without feedback is useless... |
|
Sep 20 |
comment |
Put code into body tags near top, using a plugin How would the wp_enqueue_script line appear if the file is script.js and is in my plugins directory in plugin folder "1775"? |
|
Sep 19 |
comment |
Put code into body tags near top, using a plugin instead of template_url, how can I just call to the plugins directory? do I need plugins_url ? |
|
Sep 19 |
comment |
adding meta data using plugin to top of head his plugin is dozens of files, and I don't even know what I'm looking for. |
|
Sep 19 |
comment |
adding meta data using plugin to top of head By the way, Yoast's Wordpress SEO plugin puts social stuff at the top of the head tag area. If he managed to do, I'd like to as well. Thanks! |
|
Sep 19 |
comment |
adding meta data using plugin to top of head Thanks, but my goal is to not edit the theme's header.php, as I'd have to re-encode it with every update. That's in fact why I'm working on my custom/personal functionality plugin. |
|
Sep 6 |
comment |
Including a PHP file via a function that is part of a plugin? I've returned the Test Page back to the code: add_shortcode( 'ContactForm', 'ContactInsert' );
function ContactInsert() {
$file = include(ABSPATH . "../contact.php");
return $file;
} |
|
Sep 3 |
comment |
Including a PHP file via a function that is part of a plugin? Thanks for the advice, but I'm not re-inventing anything. I've used this form on multiple sites, it already works, and it uses common libraries that I'm using across multiple sites. I just need to include it properly in WP. If I add it to the index.php it works fine. I want it added as a plugin. |
|
Aug 30 |
comment |
Including a PHP file via a function that is part of a plugin? In trying to figure this out, I put the function back to the one with ob_start() as described above. |
|
Aug 30 |
comment |
Including a PHP file via a function that is part of a plugin? Can't I do this somehow as a plugin? Otherwise, any tips on making it a template? |