active questions tagged wordpress - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T06:09:06Zhttp://stackoverflow.com/feeds/tag/wordpresshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/945906/how-to-get-the-category-title-in-a-post-in-wordpress0How to get the category title in a post in Wordpress?Keith Donegan2009-06-03T17:09:02Z2009-12-20T02:14:55Z
<p>Say I have a post called Hello World in Wordpress and I'm directly viewing this page, how would I go about finding the category of "Hello World" and displaying it?</p>
http://stackoverflow.com/questions/1933627/wordpress-plugin-tag-not-parsing-in-script-block0WordPress plugin tag not parsing in <script> blockpthesis2009-12-19T17:45:39Z2009-12-19T23:14:34Z
<p>I'm using the following code in one of my WordPress plugin files:</p>
<pre><code>else if($filetype == 'swf'){
print
<<<EOT
<script type="text/javascript" language="javascript">
jQuery(document).ready(function(){
var embed = '<div>[kml_flashembed movie="$img" /]</div>';
jQuery("#header").prepend(jQuery(embed));
});
</script>
<style type="text/css">
#$headerID {
background: none;
}
.flashmovie {
position: absolute;
}
</style>
EOT;}
</code></pre>
<p>But instead of parsing the <code>[kml_flashembed]</code> block, it gets spit out as it is. I manually put it in my <code>header.php</code> file and there it rendered fine, so the problem is in the way the JavaScript is injecting it into the HTML.</p>
<p>Can someone shed some light on what I should change to get the tag to parse instead of getting rendered literally?</p>
<p>(The tag is for the WordPress Kimili Flashembed plugin.)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1925987/software-for-quickest-establishment-of-an-online-presence1Software for quickest establishment of an online presenceMark Mayo2009-12-18T02:52:02Z2009-12-19T21:41:58Z
<p>So, every so often you get sites like <a href="http://www.twitmaps.com" rel="nofollow" title="http://www.twitmaps.com">http://www.twitmaps.com</a> - sites created quickly and pushed online for a random purpose.</p>
<p>Often either you have plenty of spare time, or you just don't have the opportunity to get your own ideas online. For example in this one, the snow images are very vague and could do with more accuracy.</p>
<p>What tools / languages do people use to make a site as quickly and efficiently as possible? Not one with a shop or anything like that - just 1-5 simple php pages, some API linkins to other sites, and a mysql backend. Wordpress is great for blogs, but what about general purpose websites?</p>
<p>I've written sites in ASP, php and am happy playing around with databases and the like - I just want a way to quickly shove something online :)</p>
http://stackoverflow.com/questions/948116/ajax-404-with-results-using-buddypress0AJAX 404 with results using BuddyPressjoelpittet2009-06-04T01:11:31Z2009-12-19T19:20:12Z
<p>On my development machine everything works fine. On the live server (Godaddy), the AJAX requests from BuddyPress are returning results and a 404 error in FireBug. But the script is seeing the results as a fail and the indicators continue to spin.</p>
<p>Example: <a href="http://jobaru.com/" rel="nofollow">http://jobaru.com/</a> on the homepage there is Newest | Active | Popular under memebers using the AJAX as well as the letters on the groups page.</p>
<p>Things I have tried: Double checked the file was actually there first, checked permissions to be able to read. Did a fresh install. </p>
<p>Any ideas on why it would return 404 header and valid response?</p>
http://stackoverflow.com/questions/1907421/best-book-for-wordpress-developer-and-cms-development0Best Book for Wordpress Developer and CMS DevelopmentOliver Bayes-Shelton2009-12-15T13:22:27Z2009-12-19T16:22:19Z
<p>Hi , </p>
<p>I start a new job on the 4th of jan and I need two books one on Wordpress for developers and one on CMS maybe focused on a certain CMS would be good does any one have any recommendations for a good book?</p>
http://stackoverflow.com/questions/1928359/use-first-post-as-start-page-in-wordpress-1Use first post as start-page in wordpressEspenhh2009-12-18T14:01:53Z2009-12-19T12:43:49Z
<p>Hey,</p>
<p>Is there an easy way to redirect the user to the first post when he goes to the wordpress-installations main url.. Like, if he goes to domain.com, he will be redirected to domain.com/title-of-the-first-post..</p>
http://stackoverflow.com/questions/1932450/wordpress-pull-blog-post0Wordpress pull Blog PostPennf0lio2009-12-19T09:20:08Z2009-12-19T11:03:05Z
<p>I'm designing a theme for wordpress. I need advice on how I would construct it.</p>
<p>At the bottom of my Frontpage/Home I will put a snippets (a title and a short description of blog post) of what is new in my Blog . </p>
<p>Preview:
<img src="http://i47.tinypic.com/1x7k0.jpg" alt="alt text"></p>
<p>Question:</p>
<p>What approach should I use? I can make the bottom page widget ready and will just use widget or will use PHP to pull details in my 'blog' page (I dunno how to do it php, a link would be useful)</p>
<p>what is the proper approach? I'm designing it for a client. My concern is If I would make it widget ready, client would have to install the widget. If I would do it on PHP, (I have no resource and idea in doing that )</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1929548/make-wordpress-sticky-posts-behave-as-normal-using-callergetposts1-isnt-worki0Make WordPress sticky posts behave as normal using caller_get_posts=1 isn't workingLaura Kalbag2009-12-18T17:08:19Z2009-12-19T10:29:13Z
<p>I'm making a specific single.php template. It's using a jQuery slider to slide from one post to the next. In order to show the right post first, I have to use 2 loops - one to call the first single post, and then another loop to call all the other posts in the category.</p>
<p>This I do like this (might be a bit mucky, I'm no PHP guru)</p>
<pre><code><ul id="tour-items">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</li>
<?php endwhile; endif; ?>
<?php $briefingsposts = new WP_Query(array(
'caller_get_posts' => 1,
'category_name' => Briefings,
'offset' => 1
)); ?>
<?php while ($briefingsposts->have_posts()) : $briefingsposts->the_post(); ?>
<li>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</li>
<?php endwhile; ?>
</code></pre>
<p></p>
<p>However, if the first post is a sticky post, it's repeating in the category loop despite the 'offset' => 1 which I assume is because it's doing it's sticky behaviour and sticking itself to the top.</p>
<p>I've tried using 'caller_get_posts' => 1 in the array but it doesn't seem to make any difference at all. I dont want to exclude sticky posts, just make them behave as normal. Is there a way that might work within my queries?</p>
<p>Thanks,</p>
<p>Laura</p>
http://stackoverflow.com/questions/1932198/htaccess-and-sessions-cookies0htaccess and sessions/cookiesPatrick2009-12-19T06:41:50Z2009-12-19T06:41:50Z
<p>Im having a problem with a htaccess rewrite rule on a site im working on.</p>
<p>Main Dir's htaccess:</p>
<pre><code>RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^website.com [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
</code></pre>
<p>This site forces the user to www.website.com, even if they enter the address sans the www.</p>
<p>Now i have a wordpress install on a sub-directory, who's htaccess is this:</p>
<pre><code>RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</code></pre>
<p>The problem, is that whenever i try to access the wordpress directory, i get forced to a www-less address. If i go to www.website.com/blog, i get redirected to website.com/blog.</p>
<p>This of course is hurting my ability to work with sessions/cookies between the two. Anyone have any ideas why this is doing this, or how to fix it?</p>
http://stackoverflow.com/questions/1931929/feed-xml-content-into-a-wordpress-page0Feed XML content into a wordpress pageburntsugar2009-12-19T04:14:33Z2009-12-19T04:15:27Z
<p>I am looking for a widget or similar for feeding some xml content (articles) into a wordpress page.</p>
http://stackoverflow.com/questions/1900240/how-to-create-custom-media-type-in-wordpress1How to create custom media type in WordPress?OJ22009-12-14T11:02:44Z2009-12-18T22:21:15Z
<p>I have some custom media (special map points for example) I want to associate custom data player with it and place its instances in media library (so them to be accessible in media gallery), keeping possibility to edit it any time user wants to. how to do it?</p>
<p>Sorry for my Eng.Lang feel free to edit this Question.</p>
http://stackoverflow.com/questions/1926154/php-mail-on-windows-server-2008-not-working0php mail() on windows server 2008 not working [closed]unknown (yahoo)2009-12-18T03:44:46Z2009-12-18T21:22:23Z
<p>Boy, could I use some help...</p>
<p>I've tried just about everything I can think of. I am not even getting any errors, just nothing is being mailed.</p>
<p>I setup WordPress and php through the Windows Web Platform Installer and everything looks ok. I just can't send any email using mail().</p>
<p>I even setup the relay for smtp but that didn't help either.</p>
<p>I downloaded and installed an extension to WordPress called WPmail. That allows me to send emails so I know that the smtp is working, but whenver I try to mail anything outside of WordPress, nothing works.</p>
<p>Anyone have any ideas?
TIA</p>
http://stackoverflow.com/questions/1927047/how-to-post-articles-to-wordpress-programmatically0How To Post Articles To Wordpress Programmatically?Ashish2009-12-18T08:40:34Z2009-12-18T15:22:59Z
<p>Wondering is there a way so that you can post an article to Wordpress directly from your own PHP code. I want to post in my own standalone wordpress from my php page which should call the hosted wordpress 2.8.6 version and post an article with images (create thumbnail automatically). Is it possible?</p>
http://stackoverflow.com/questions/1923383/wordpress-mobile-version0Wordpress Mobile Versionjoshjs2009-12-17T17:40:02Z2009-12-18T14:32:22Z
<p>I'm interested in creating an alternate version of a Wordpress site, specifically tailored for mobile devices. (We're talking about iPhones in particular, but something more generic would be cool, too.)</p>
<p>My thinking on this right now is that I'll need to figure out how to serve the content from one Wordpress installation to two different domains, each with a different theme. And then that second theme could be mobile-friendly.</p>
<p>Is this possible? Is there a better way?</p>
http://stackoverflow.com/questions/1928361/wordpress-private-page-1Wordpress Private PageKevin2009-12-18T14:01:59Z2009-12-18T14:11:50Z
<p>Is there a solution for this?</p>
<p>1) user logs in (with user name and password)
2) they're taken to a page (with text, images, links) that can only be viewed from their login</p>
http://stackoverflow.com/questions/1926856/photo-gallery-for-wordpress-1Photo gallery for wordpresswaywardmd2009-12-18T07:31:57Z2009-12-18T12:54:54Z
<p>Can anyone recommend an easy to use lightbox style photo gallery for wordpress?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1429420/where-are-certain-wordpress-files-that-i-want-to-programmatically-edit0Where are certain Wordpress files that I want to programmatically edit?unknown (google)2009-09-15T20:24:58Z2009-12-18T08:35:33Z
<p>I have a simple perl script that via ftp uploads files to the server hosting our website. After I do that I have to login as a Wordpress admin and use the GUI to edit a page so that it reflects the new file I just uploaded. I want to programmatically edit that file to save a few steps, but I can't find the file. Are any Wordpress files sitting on the server? The file in question is basically a subpage of the main site.</p>
http://stackoverflow.com/questions/1926268/wordpress-website-development-in-mvc-style0Wordpress website development in MVC styleDan2009-12-18T04:25:42Z2009-12-18T04:25:42Z
<p>Just wondering how other developer do that or if it's possible. </p>
<p>To me Wordpress has a lot of useful template tags and can get developers kicked started quickly. Although when the site grows big, i often found the need to seperate the presentation layer and the business logic. </p>
<p>Currently i am developing a semi large scale website with wordpress as the backend. I kind of seperate the Model and View, however the action controller seems more difficult to implement. I can only think of attach the query string with </p>
<p>balbal/p=98&action=foo</p>
<p>and then setup page template with action functions, any alternative? </p>
http://stackoverflow.com/questions/1912331/how-to-apply-two-wordpress-themes0How to apply two wordpress themes? [closed]coderex2009-12-16T04:41:23Z2009-12-18T03:13:13Z
<p>hi,</p>
<p>i have a site in <strong>Wordpress</strong> with <strong><a href="http://example.com" rel="nofollow">http://example.com</a></strong> which is using the "themeOne" and i have another theme named "themeTwo". I wish to use the "ThemeTwo" for a particular url like</p>
<p><strong><a href="http://example.com/products/" rel="nofollow">http://example.com/products/</a></strong> (dynamic page content). I need the same header and footer of the "themeOne" and use the "themeTwo" for the content area.</p>
<p>is this possible?? then how?</p>
http://stackoverflow.com/questions/1923679/wordpress-hiding-post-div0Wordpress hiding Post Divkwek-kwek2009-12-17T18:31:36Z2009-12-17T19:11:17Z
<p>I wanted to know how to make it possible that if there is no post i would like to be able to hide the DIV that controls the latest blog post only having them appear when someone post somethign on a blog..</p>
<p>Somewhat like a position in joomla but in this case i am using wordpress</p>
http://stackoverflow.com/questions/250880/is-there-any-cms-better-than-wordpress-or-should-i-roll-my-own15Is there any CMS better than WordPress or should I roll my own?dove2008-10-30T16:45:03Z2009-12-17T11:18:52Z
<p>I'm developing a small business website and want to give some control over content to the client but also allow myself control over the outputted code. Indeed allow the user to fill in the content gaps while not creating havoc.</p>
<p>I'm leaning towards WordPress rather than reinventing the wheel in asp.net, which would be my code of choice, or possibly just html. </p>
<p>Any recommendations either way? An alternative CMS maybe or some robust but productive framework? (interested in mention of python frameworks)</p>
http://stackoverflow.com/questions/1919451/wordpress-plugin-coding-problem0WordPress Plugin Coding Problem Brad2009-12-17T04:24:05Z2009-12-17T04:50:42Z
<p>I'm trying to convert a plugin I wrote procedurally to be class based, and it's not working for some unknown reason. So I wrote cut down my plugin code to be about as minimilistic as possible. When it runs, it comes back with no content. </p>
<pre><code> <?PHP
/**
* Plugin Name: A1 Test
* Version: 1.0.0
* Plugin URI:
* Description: Test
* Author:
* Author URI:
*/
if ( ! class_exists("TestingDemo") )
{
class TestingDemo
{
function TestingDemo_filter( $buffer )
{
$buffer = preg_replace_callback( '@\[testing\s*=\s*"(.*?)\s*"\]@si',
array(&$this, "TestingDemo_replace"), $buffer );
}
function TestingDemo_replace( $matches )
{
$message = $matches[1];
return "Testing Worked..... {$message}";
}
}
}
if ( class_exists("TestingDemo") )
{
$TestingDemos = new TestingDemo();
}
if ( isset($TestingDemos) )
{
add_filter( 'the_content', array(&$TestingDemos, 'TestingDemo_filter') );
}
</code></pre>
http://stackoverflow.com/questions/1917850/wp-http-error-couldnt-connect-to-host0WP HTTP Error: couldn't connect to hostChad2009-12-16T21:24:06Z2009-12-16T21:24:06Z
<p>I'm running Wordpress on MAMP and for some reason I get an error on all of my RSS feeds saying </p>
<p><code>WP HTTP Error: couldn't connect to host</code></p>
<p>I think its a configuration problem in MAMP with cURL, but not sure how to fix it. I have cURL enabled.</p>
http://stackoverflow.com/questions/1916746/alternative-to-updateoption-in-wp-admin0alternative to update_option() in wp-adminnigeberk2009-12-16T18:41:57Z2009-12-16T19:21:21Z
<p>I know this is a fairly recent feature in wordpress (version is 2.8.6 at the time of writing). There are some functions that allow you to easily create panels in the wp-admin. You're supposed to be able to just define a function and a from, and wordpress will handle the update_option() calls. I haven't had much success in hunting it down though. </p>
<p>Could someone enlighten me?</p>
http://stackoverflow.com/questions/1915212/how-to-filter-posts-by-day-week-and-month-in-wordpress-from-people-clicking-on-a0How to filter posts by day, week and month in Wordpress from people clicking on a horizontal menu linkChristopher Mitchell2009-12-16T15:05:12Z2009-12-16T15:05:12Z
<p>Hi everyone, I am trying to make a filter on a set of menu buttons, so when you click on today it shows all the posts for today, then if you click on this week it shows all the posts for this week and then last week and last month.</p>
<p>Does anyone know what code I need to use to make this work from a menu button?</p>
http://stackoverflow.com/questions/1150601/anyone-know-an-embedable-map-widget-that-can-be-posted-to-anonymously0Anyone know an embedable map widget that can be posted to anonymouslyGeorge Mauer2009-07-19T18:58:25Z2009-12-16T15:00:03Z
<p>I am trying to embed a map widget into a wordpress blog.</p>
<p>Visitors to the blog should be able to place a marker on the map and others should be able to view places that other people have marked.</p>
<p>It should not require people to log in before placing a marker.</p>
<p>Can anyone recommend such a service?</p>
http://stackoverflow.com/questions/1915042/wordpress-base-path-hook0Wordpress Base Path Hook?unknown (google)2009-12-16T14:37:51Z2009-12-16T14:53:07Z
<p>What's the wordpress / php hook to link to the base path of the wordpress installation? I want to be able to link to the home page of the wordpress blog, regardless of which directory the theme is installed in.</p>
http://stackoverflow.com/questions/1913505/wordpress-theauthor-and-wpgetarchives-not-working0Wordpress the_author() and wp_get_archives() not workingAaron2009-12-16T09:45:08Z2009-12-16T14:34:31Z
<p>Hi all,</p>
<p>Firstly, I'm not fresh faced with WordPress, I've been actively using it for various light-weight custom CMS since the early 1.x line.</p>
<p>I'm using a fresh build of 2.8.6 for a very, very simple blog build. Only one category and only one 'single' template. There's no other functionality, so the site only really requires the index.php and single.php files in the theme directory.</p>
<p>The issues:
the_author() does not work on single.php, and only works partially on index.php. By partially, I mean the tags works for the first item in the loop, but then doesn't work thereafter.</p>
<p>wp_get_archives() shows no content in the sidebar, even though there are 14 test articles in the blog back-published to May of this year.</p>
<p>Description of the error:
The mysterious lack of 'echo' from these tags does not halt the loading of the page. My CSS template displays fine (and it is not CSS hiding anything). The tags simply are presenting no output to the screen.</p>
<p>Remedies I have tried:
I've tried using get_userdata() with the post author, but even this doesn't work. I can get the post author_id from the database ($post->author_id), but get_userdata() doesn't return anything when fed this variable on single.php or for any posts after the first in the loop.</p>
<p>I've also tried all the standard tracing solutions such as print_r() and trying to get the function to return a variable to analyse it's contents - no luck.</p>
<p>If anyone has any idea at all what could be causing this, please do get in touch! I've never had silly issues with WordPress like this before. Thanks.</p>
http://stackoverflow.com/questions/1911781/all-users-blogs-browsing-from-default-bp-theme-wordpress-mu0all users blogs browsing from default BP theme (WordPress MU)Ole Jak2009-12-16T01:50:39Z2009-12-16T01:50:39Z
<p>WPMU.. I want to use BP as social network only (keeping blog creation and editing functionality) but preserving users from browsing there blogs from anywhere but default BP blog\theme so that if this is default link to some users blogs ( wp/members/dreadnought/blogs/ ) this will be link for his posts ( wp/members/dreadnought/blogs/SomeBlog/testpost ) not ( wp/SomeBlog/testpost/ ) (so I want all users blogs browsing from default BP theme) Ho to do this?</p>
http://stackoverflow.com/questions/1385954/do-wordpress-widget-or-sidebar-hooks-exist0Do WordPress widget (or sidebar) hooks exist?Jeff2009-09-06T15:39:48Z2009-12-16T01:05:12Z
<p>I'm trying to filter ALL widget output through a simple filter, but can't find any hooks and was hoping to be pointed in the right direction. Or possibly my efforts are not even possible?</p>
<p>My simple filter is something like this:</p>
<pre><code>function clean_widget_output( $input ) {
return str_replace( array( "\t", "\n", "\r" ), '', $input );
}
add_[FILTER OR ACTION]( 'need_a_hook', 'clean_widget_output', 99 );
</code></pre>
<p>Any ideas? I'm pretty new to PHP, but I can get around.</p>