how can I change wordpress editor Inset link's Class Names?
Hi how can i add one more class name to wordpress editor insert link style. Any wordpress plugin available for that? ...
Hi how can i add one more class name to wordpress editor insert link style. Any wordpress plugin available for that? ...
Which are the basic plugins required to manage a website developed WordPress? ...
I want to make a website about illustrated books. There are two different kind of authors for a book: writers and illustrators For each writer I want to make a page that lists the books for that writer. The path would be: http://mysite.com/writers/EdgarAllanPoe http://mysite.com/writers/OscarWilde etc The same for each illustrator: ...
Hi, I have a function going that displays all posts under the same custom taxonomy called "issue". I need to adjust it so that it further narrows it down to also only display posts under the same category. I took a look at the WordPress get_the_category() function but didn't have much luck with that. Here is the code: <?php $issueid...
Hi. I asked this question previously although I don't think I did a great job of explaining it and the answers didn't seem to work so this is my second attempt. FYI, I'm using Wordpress. I wish to create an image slideshow plugin. The idea is that the user can enter the name of the slideshow into a text field then submit it which will u...
Hello, I used Xampp 1.7.3 and (mod) xdebug to profile the latest Wordpress 3.0.1 release on a Windows 7 machine. The average loadtime during tests was arround 835 milliseconds calling 697 functions and performing 15 mysql queries. I used the default theme twentyten. Now my question: Can someone validate my results or is my local setu...
Hello. I am using WP3 and am using some simple JQ to style some elements. However, I cannot get it to work. I am aware of but beyond that I don't know where to put my own code exactly, in which file or place. The code is: <script> $(document).ready(function(){ $("#image" + photoNum).animate({ opacity: 0, scale: 3 }, 0); </script> ...
In WordPress 3 there is Featured Image functionality. How do i fetch all posts that have a featured image with them? Here is my current custom loop: $loop = new WP_Query( array( 'posts_per_page' => 15 ) ); ...
At the moment, I have a standard installation of Wordpress 3.0, and the .htaccess file looks like this: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> I want to rewrite URLs so that I...
Hi, I have a beginner question. What is the best way to address the change management issues in WordPress? I have an all-pages WordPress installation. Suppose name of some event or an entity changes from A to B, then I have to go to all the pages to make that change. Is there any better way of doing it? Like externalization or something....
Im trying to remove the https:// and replace it with a non secure link for my wordpress navigation. This only happens when I view a secure page the wp_list_pages adds https:// Ive tried this $sslnav = wp_list_pages('title_li=&sort_column=menu_order&exclude='); $sslnav = str_replace("https", "http", $sslnav); echo $sslnav; but the nav ...
I'm trying to show expired posts AFTER non-expired posts. How can I do this? I've added a custom field "Expiration Date", in which I store the expiration dates in yyyy/mm/dd format. Problem is, if I order my results by this field, future expiry dates come first. So I created a repeating cron-job which compares the dates and creates a s...
Hi, I am trying to create a plugin for Wordpress which allows the user to enter a title into a text box. The user then clicks 'submit' and that title is taken and added to the database. However currently when you press submit, it returns a PHP error: Fatal error: Call to a member function query() on a non-object in /home/matthew/publ...
Hi, I'm running a site powered by WordPress with extra pages... To integrate these pages with the WordPress theme I use this code: <?php $blog_longd='Title'; // page title define('WP_USE_THEMES', false); require('wp-blog-header.php'); get_header(); ?> html code <?php get_sidebar(); get_footer(); ?> This works fine, however page tit...
I have a wordpress database for accounts and settings (or for this example, joomla accounts and settings database). I also have a working silverlight application that works all by itself without problems. How can I have the two communicate? For example, the user should be able to log on to my silverlight application using my wordpress/...
Can someone tell me how to stop Wordpress' TinyMCE from stripping the <p> tags? This is driving me nuts. I have gone through the entire wp-tinymce.js file trying to find it with no luck. I cannot use the tinymce-advanced plugin as it breaks something on the site. Thank you so much if you can help. EDIT: I figured it out and posted ...
I am posting to wordpress in java using xmlrpc successfully using the following code // Hard-coded blog_ID int blog_ID = 1; // XML-RPC method String xmlRpcMethod = "metaWeblog.newPost"; // Create our content struct ... // You can specify whether or not you want the blog published // immediately boolean publish = true; try { ...
Hi there, I hope you can help me! I have the newest Wordpress edition (3.0.1) and i use the Theme IbizPress Green Magazine. http://www.technologytricks.com/ibizpress-magazine-magazine-style-premium-wordpress-themes Well this theme is I think out of date, because since the update to 3.0. the Featured Posts (it's on the top of the page, ...
I am looking for the best Weblog client for WordPress for Windows. Pleases let me hear your opinion. ...
My WordPress theme has a custom taxonomy called "Collections". The custom taxonomy is hierarchical, so there are subcollections. I have a Collection called "Books" and a sub-collection called "Novels". There are some posts that are just in "Books", and some posts that are in "Novels". I want the page for the "Books" collection to only s...