Hi,
I am trying to get this flash carousel to show up in a Wordpress post. I can right click on the blank space where it should be and bring up the flash options menu, but no movie is showing. It links to an xml document that pulls in the images and text. Is it an xml issue? Below is what I placed in my wordpress template header to allo...
I'm trying to add a number of tags when a post is saved or added. It should just append if they don't exist and if they already exist for that object just ignore them.
This is a short version after hours of looking; something like this is supposed to work I would think, but it doesn't:
function generate_tags($id) {
$tags = array("te...
There seems no way of referring to the "big size" "mid size" or "small size" image in a theme. Compounding that problem is their naming convention of 100 x ??? file name format, preventing hard coding a reference. Does anyone know of any solutions?
...
Does anyone know if there is a wordpress plug-in which lets you set up a form which has an email field, among others.
The form, after filled in, would:
send the content of the form fields to an email address (name:joe, phone number: 555 etc)
send an instance response to the email provided ('thanks for your contribution')
add email addr...
I have a website, with a user system. I want to integrate wordpress's user system into that website's, but I still want to use the website's register/login pages. I don't want anybody to be able to login or register using Wordpress's login or registration forms. Instead, when they're try to access the login/registration pages in Wordpres...
Hey,
I want wordpress to give me an array that contains all authors. There are some dumb functions, that echo html (wp_list_authors()) - but that's not what I want.
I want to get the full profile (ID, name, meta-data).
My current approach isn't, what I am looking for - to be exact, it's **it.
$authors = wp_list_authors(array(
'option...
How do I go about retrieving all of the blogposts from my Wordpress blog via an external PHP script? Is this even possible? I have seen the API for creating a Wordpress plugin, but I'm not sure if that is relevant in this particular case. Any suggestions are greatly appreciated. Thank you.
...
Hello,
We am setting up a WP-MU at work and one of my tasks is to make a link in the sidebar that will will go to a page displaying a monthly archive.
The sidebar must not contain the archive list just a link to a page (generated on the fly by WP) that shows the archive by month.
This is probably simple, but I have spent hours going t...
I developed a wordpress plugin entirely on localhost and tested it on a live server (CPanel) that I have full access to. What I'd like to know is what information I would need from a website owner if I were to install the plugin on their website? The assumption is that the website owner wants to give me as little information as possible,...
The code below shows a Wordpress loop. How can I modify this loop to show only one post on the page?
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="fullbox" id="post-<?php the_ID(); ?>">
<h3><?php the_category(', ') ?></h3>
<div class="fullbox_content">
<h1><a href="<?php the_permalink(); ?>" rel="b...
I am trying to integrate my custom user system with Wordpress, and I have recently asked a question on how to redirect requests to wp-login.php to my own login/registration page, but as I was working on the pluggable functions, I realized that requests to wp-login.php can either be for login, registration, or log out.
This is set in th...
I was wondering if it was possible to add a api to wordpress to make all the links in a post a shortened url (in this case for linkbee - http://linkbee.com/api%5Fdoc.php) if so how would i do this?
...
Of course I can always edit WordPress' .htaccess file, but that would kind of make my WP plugin a little non-standard. Instead, what is the way to hijack a URL via a custom plugin in WordPress?
For instance, let's say I want to build an elaborate product catalog that could be installed in WordPress as a plugin. Once activated, you could...
I installed Wordpress on unix hosting provider and now I see warnings when executing xmlrpc.xml?
This is where I see warnings
Greatly appreciate in advance for helping me to resolve this problem.
...
Example Code:
function flush_rewrite_rules()
{
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
function activate()
{
global $wp_rewrite;
createRewriteRules( $wp_rewrite );
flush_rewrite_rules();
}
function createRewriteRules( $rewrite )
{
global $wp_rewrite;
$new_rules = array( 'option/(.+)' => 'index.php?o...
I am using markItUp for a textarea in a WP widget (that is, on widgets.php page, while creating and editing a widget).
The textarea is markItUp'ed when I first open the widget, but after I click save the functionality is lost and I am back to a regular textarea.
I compared the source code for the before-save and after-save versions of ...
Hi!
I would like to open an external link in a lightbox on my Wordpress site. I have tried both the wp-prettyPhoto and Lightbox 2 plugins, but have been unsuccessful so far.
I will probably have to use an iframe, but I would prefer not to load it with the page. I would like to be able to click a link, which opens up the iframe in a l...
This is weird. Until 1 of january 2010 all of facebook share buttons and retweet buttons work on my site www.bizibozmaz.com . But all posts after this date could not crawled by neither facebook nor tweetmeme. If i change permalink structure to default ugly one it starts to work but i don't want to use them. I realized it is about the dat...
I want to set the Tag of a Wordpress Hook dynamically with a passed variable:
from
add_action('thesis_hook_multimedia_box', 'feat_listings');
to
add_action($tb_featured_listings_hook, 'feat_listings');
This doesn't work, but it sure looks like it should...
...
is it possible to have the main domain of a wordpress blog(example.com) to redirect to another site and the actual posts and pages (example.com/post1, example.com/about, etc') to not be redirected and instead reside on the wordpress?
...