I'm creating a plugin for wordpress and I need to check if a post with a specific title exist or not. This to prevent duplicates, how can I query this and see if it returned true or false?
Currently I have my Facebook profile automatically republish blog posts from a WordPress instance.
What I would like to be able to do, however, is to also have comments posted to either the blog of Facebook show up on the other in the appropriate location.
Is there a way to do this with the Facebook API?
Wordpress theme not displaying when activated on production server, but will display on development environment. I can view the theme in preview mode, but not when it's activated. Any idea on where to start would be great.
Hi
I have wordpress site. I have installed modern-blue-green-120070612-2 theme.Then i got an error message on the right hand side "Fatal error: Call to undefined function cypher_previousposts() in mydomain\wp-content\themes\modern-blue-green-120070612-2\sidebar.php on line 59.
Does any one know this? Please help me ....
Thaks in advance
I'm looking for a solution that will enable me to use WordPress for site/content management but will export static .html files rather than dynamic database driven files.
I've used wp-super cache and it is a step in this direction, however, the speed gains were not quite what I'd like.
Any ideas?
So what i need is a query or some tip on how to turn all titles on a wordpress powered website into capitalized case.
What i have now is something like this:
AAAAA BBBBB CCCCC
I want it to be like this:
Aaaaa Bbbbb Ccccc
I did try googling and searching here, but have failed at that task so any help is much appreciated!
I want the wordpress sidebars got an specific height, NOT equal to the content to the post/page. Just 400px, for example. I`m working with atahualpa.
Which code in wich php i got to hack?
Thanks
Hi,
Does anyone know how to disable duplicate comment detection in Wordpress (2.9.2)? I'm looking for a way to do this programatically without editing core files. We're adding comments via XMLRPC and the duplicate detection in wp-includes/comment.php (line 494) is causing issues during testing.
Thanks!
Hi there!
I want to change the post permalink schema on my WordPress 3.0-beta1 to use my new custom taxonomy.
Today I can use /%category%/%postname%/ and the /my-category/my-post/ URL, that's nice but I need to use another taxonomy instead "category" one.
I tried to use /%acervo%/%postname%/ but my URLs came with %acervo% on the URL instead the name of the "Acevo" (my taxonomy name) wich the post belongs to.
I found something related to WP_Rewrite but without sucess...
hello again. Does anyone here knows which file I can modify to change the date divs in wordpress? If you should look at my site: www.xternalit.co.uk, I want to chage the date to my personal image. No image will be the same.
Chers!
I am trying to move a WordPress installation from one server to another one, including all of the SQL data, and the file-system data (photos,template files).
I just have a problem changing the URLs in the database, since I need to replace the new URL with the old one.
I would love to have some suggestions about how can I replace the URLs (maybe there's a rplace statement in SQL?)
Thanks in advance.
I wondered how I could exclude posts in Wordpress.
E.g. I have a string
$exclude_ids (= "4,5,6") or (="-4,-5,-6")
and I would like to prevent these posts from showing up. How would I do that?
I already tried:
query_posts('p=' . $exclude_ids);
but that didn't really work out and I didn't really find any information regarding this topic on google.
Cheers
So on my wordpress install. I am trying to display category list in the sidebar but having issue with wp_list_categories function. There are handful of categories in the system but this function just prints "NO Categories".
Can't figure out why.
Any ideas?
I am wondering how I can add something between posts being queried in Wordpress through this method:
<?php $the_query = new WP_Query('category_name=name&showposts=2');
while ($the_query->have_posts()) : $the_query->the_post();?>
Is there a way I could add something simple, like say a <hr> between the two posts being pulled?
I want to create a menu that pulls only the sub-menu options for a particular page.
For example, if the menu option DASHBOARD has the sub-menus MESSAGE BOARD and CALENDAR, I want to be able to create a separate menu with just MESSAGE BOARD and CALENDAR.
I'd like to do this without the wp_list_pages function so that the menu options can be managed using the Appearances Menus tab in WordPress.
Thanks!
I want to implement a business directory in WordPress and I am looking for feedback on the best approach:
I have a categories and a businesses table
Do I create a page for every business together with it's category relationship
Do I create a page and assign it a template?
What are the ups and downs with each approach?
Looking for some answers from people that might of already done this and can speak from experience
Is it possible to make a wordpress page have posts and static content on it? Like have the latest posts but also have some content from the page on it too?
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]+ /(#[^?& ]*)??([^& ]*&)?s=([^& ]+)[^ ]* HTTP/
RewriteRule ^$ http://wordpressblog.com/search/%3? [R=301,L]
Currently I use the above .htaccess mod_rewrite rule to convert default WordPress search permalink:
http://wordpressblog.com/?s=key+word
into nice permalink like this:
http://wordpressblog.com/search/key+word
My question is: What part of the mod_rewrite rule above that I need to change to get a nicer permalink like this one:
http://wordpressblog.com/search/key-word.html
Thanks.
Hai,
I would like to have a post thumbnail in the index page of wordpress site. And when you click on the post thumbnail, it opens the specific post page to play the video attached in that post.
basically the post is a video.
can u guys help in finding some good plugin to perform this task
If I upload a file foo.pdf to WordPress I can access it at http://example.com/foo/. (There is a simple HTML page with a link to the PDF file).
If I then create a Page named foo I cannot view or preview the Page because the default URL, http://example.com/foo/, will resolve to the page for the PDF.
How can I resolve this URL conflict?
i still , don't understand , how wordpress can understand what is this url refer to :
www.mysite.com/about-me/
they are using no identifier
if they using slug functions so how they can retain story information or in other word , how they change back the slugged title to select from database
We are working with a client who has an inventory system using asp.net.
We are developing his ecommerce solution within Wordpress and this needs to be updated by the asp.net inventory system ?
Ideas on how this can be integrated would be appreciated !
I have problems with wordpress and ajax.
The ajax request via jQuery just dont work.
Jquery noconflict is enabled and the effects work but the ajax requst dont.
Where could be the problem?
Thank you!
I'm struggling with wordpress templates. In one of my theme templates I have the following lines
<?php
echo get_the_ID(); // displays nothing
echo get_the_title(); // displays "Hello World! this is title"
?>
Why does the get_the_ID() return nothing ? I want the page id of the current page I'm on.