<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 09:59:27 +0000</lastBuildDate>
    <item>
      <title>(HTML) Post Data to iFrame with HTML Only - apphp-snippets</title>
      <link>https://snipplr.com/view/324923/post-data-to-iframe-with-html-only</link>
      <description>&lt;p&gt;To send data into iFrame you don't need JavaScript or anything. You just have the form's target attribute match the iframe's name attribute. The outer page doesn't even reload. Copy this code and test it.&lt;/p&gt;</description>
      <pubDate>Mon, 05 Jun 2017 05:05:58 UTC</pubDate>
      <guid>https://snipplr.com/view/324923/post-data-to-iframe-with-html-only</guid>
    </item>
    <item>
      <title>(C++) C++ SMS source code on how to send SMS text messages using HTTP - Gupta86</title>
      <link>https://snipplr.com/view/87330/c-sms-source-code-on-how-to-send-sms-text-messages-using-http</link>
      <description>&lt;p&gt;Hey Guys,&#13;
&#13;
This is a short and straightforward article (or letâ€™s say â€žtipâ€ or â€žmini-reviewâ€) that presents how to send SMS messages from your own C++ (Cpp / C plus plus) application through HTTP. You will see, it is gonna be really easy. I will focus on the necessary code, but I would like to draw your attention to all the hardware and software requirements that are essentially needed for SMS messaging.&#13;
&#13;
Briefly about SMS technology for better understanding&#13;
&#13;
If you are proficient in SMS technology, just skip this paragraph and move on to the next one. So well, if you want to send SMS messages from your C++ application, first you need to connect your software and an SMS gateway to each other. Why? Because your application let you compose the SMS messages (including the text, the recipientâ€™s phone number, etc.), but if you want to send out the SMS, you need to connect to the SMSC (Short Message Service Center that stores, forwards, converts and delivers SMS messages). An SMS gateway is able to connect to the SMSC of the Mobile Service Provider via SMPP IP SMS connection or a GSM modem, so actually the SMS gateway can send out your message. To establish connection between the SMS gateway and the C++ application, I used HTTP requests and responses. For sending SMS messages through HTTP, your SMS gateway should have a built-in webserver (e.g. Ozeki NG â€“ www.ozekisms.com). The built-in webserver allows you to send SMS messages from your C++ application by calling an URL (HTTP Get) or using the HTTP Post method.&#13;
&#13;
So that, all you need to have for sending SMS from your C++ application using HTTP is Microsoft Visual Studio for C++ development, an SMS gateway and my code snippet!&#13;
&#13;
Okay and finally a few lines about testing. To test your software by sending out SMS message(s) actually, you need to install a GSM modem connection or an IP SMS connection. Buti f you have not contracted with any mobile service provider (e.g. AT&amp;T or T-Mobile), you can test the SMS sending by simulating it (e.g.  Ozeki NG provides â€žHTTP Server Connectionâ€ that can be used for this purpose). For more details related to the configuration of the SMS gateway, please contact the vendor of your SMS gateway.&#13;
&#13;
Happy coding! :)&lt;/p&gt;</description>
      <pubDate>Sat, 17 Jan 2015 00:55:41 UTC</pubDate>
      <guid>https://snipplr.com/view/87330/c-sms-source-code-on-how-to-send-sms-text-messages-using-http</guid>
    </item>
    <item>
      <title>(PHP) Check if current post type is a custom post type â€“ WordPress - jonasethomsen</title>
      <link>https://snipplr.com/view/71803/check-if-current-post-type-is-a-custom-post-type--wordpress</link>
      <description>&lt;p&gt;Check if current post type is a custom post type â€“ WordPress. &#13;
Returns a true/false-statement.&#13;
&#13;
Can be used outside The Loop.&lt;/p&gt;</description>
      <pubDate>Thu, 11 Jul 2013 06:28:23 UTC</pubDate>
      <guid>https://snipplr.com/view/71803/check-if-current-post-type-is-a-custom-post-type--wordpress</guid>
    </item>
    <item>
      <title>(jQuery) Post form by AJAX and jQuery - khaled__mahmoud</title>
      <link>https://snipplr.com/view/70989/post-form-by-ajax-and-jquery</link>
      <description>&lt;p&gt;This code shows how we post HTML form by AJAX and jQuery.&lt;/p&gt;</description>
      <pubDate>Wed, 01 May 2013 06:27:04 UTC</pubDate>
      <guid>https://snipplr.com/view/70989/post-form-by-ajax-and-jquery</guid>
    </item>
    <item>
      <title>(PHP) Hide Page/Post Editor in Admin Backend - rickahontas</title>
      <link>https://snipplr.com/view/70325/hide-pagepost-editor-in-admin-backend</link>
      <description>&lt;p&gt;This is a combined version of Bill Erickson's hide post editor and rilwis' Metabox include for specific IDs. It hides the editor for a specified post ID. You can have multiple IDs, just separate with commas.&lt;/p&gt;</description>
      <pubDate>Sat, 09 Mar 2013 03:26:05 UTC</pubDate>
      <guid>https://snipplr.com/view/70325/hide-pagepost-editor-in-admin-backend</guid>
    </item>
    <item>
      <title>(PHP) Doing POST Request by Socket Connection - apphp-snippets</title>
      <link>https://snipplr.com/view/70119/doing-post-request-by-socket-connection</link>
      <description>&lt;p&gt;This example of code shows how to do a simple POST request in PHP to another web server by using a socket connection.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Feb 2013 20:51:52 UTC</pubDate>
      <guid>https://snipplr.com/view/70119/doing-post-request-by-socket-connection</guid>
    </item>
    <item>
      <title>(PHP) Custom columns for wordpress custom post type - bitsculptor</title>
      <link>https://snipplr.com/view/70009/custom-columns-for-wordpress-custom-post-type</link>
      <description>&lt;p&gt;This adds custom columns to a custom post type&lt;/p&gt;</description>
      <pubDate>Wed, 20 Feb 2013 07:05:55 UTC</pubDate>
      <guid>https://snipplr.com/view/70009/custom-columns-for-wordpress-custom-post-type</guid>
    </item>
    <item>
      <title>(PHP) Doing POST Request by Socket Connection - apphp-snippets</title>
      <link>https://snipplr.com/view/69922/doing-post-request-by-socket-connection</link>
      <description>&lt;p&gt;This example of code shows how to do a simple POST request in PHP to another web server by using a socket connection.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Feb 2013 20:01:27 UTC</pubDate>
      <guid>https://snipplr.com/view/69922/doing-post-request-by-socket-connection</guid>
    </item>
    <item>
      <title>(PHP) Move Thematic Post Thumbnail Outside of Entry-content - AndrewThinkUp</title>
      <link>https://snipplr.com/view/68937/move-thematic-post-thumbnail-outside-of-entrycontent</link>
      <description>&lt;p&gt;This is some code using Thematic Child Theme overrides to remove thematic's post thumbnails and add Post Thumbnails outside of the .entry-content &lt;div&gt; so that POst Thumbnails can be styled separated from all post Meta.  See this page for an example www.speiranconsulting.com/blog&lt;/p&gt;</description>
      <pubDate>Tue, 04 Dec 2012 07:12:58 UTC</pubDate>
      <guid>https://snipplr.com/view/68937/move-thematic-post-thumbnail-outside-of-entrycontent</guid>
    </item>
    <item>
      <title>(PHP) POST Function Using HTTP Headers Return Result In A Variable - halk</title>
      <link>https://snipplr.com/view/68151/post-function-using-http-headers-return-result-in-a-variable</link>
      <description>&lt;p&gt;This function dosen't use curl, or any other libraries.  Just include it in your function library and use it like this:&#13;
$Post_result = _post('http://www.yourdomain.com/your_path/post_api.php',"method=fetchJson&amp;params=select * from user");&lt;/p&gt;</description>
      <pubDate>Wed, 07 Nov 2012 20:40:32 UTC</pubDate>
      <guid>https://snipplr.com/view/68151/post-function-using-http-headers-return-result-in-a-variable</guid>
    </item>
    <item>
      <title>(PHP) Custom Post Type with a Metabox field - eridesigns</title>
      <link>https://snipplr.com/view/68020/custom-post-type-with-a-metabox-field</link>
      <description>&lt;p&gt;Does not work at the moment. So don't copy it.&lt;/p&gt;</description>
      <pubDate>Tue, 30 Oct 2012 11:53:26 UTC</pubDate>
      <guid>https://snipplr.com/view/68020/custom-post-type-with-a-metabox-field</guid>
    </item>
    <item>
      <title>(PHP) Custom post type, taxonomy, and messages - bitsculptor</title>
      <link>https://snipplr.com/view/67757/custom-post-type-taxonomy-and-messages</link>
      <description>&lt;p&gt;This gives the code for creating a custom post type with all the necessary labels and even custom message support, and it gives the code for a custom taxonomy with that post type.&lt;/p&gt;</description>
      <pubDate>Tue, 16 Oct 2012 06:27:28 UTC</pubDate>
      <guid>https://snipplr.com/view/67757/custom-post-type-taxonomy-and-messages</guid>
    </item>
    <item>
      <title>(PHP) custom post type custom update message - bitsculptor</title>
      <link>https://snipplr.com/view/67717/custom-post-type-custom-update-message</link>
      <description>&lt;p&gt;This allows you to change the post updated message that wordpress automatically inserts.&lt;/p&gt;</description>
      <pubDate>Sat, 13 Oct 2012 03:41:10 UTC</pubDate>
      <guid>https://snipplr.com/view/67717/custom-post-type-custom-update-message</guid>
    </item>
    <item>
      <title>(JavaScript) POST form with jQuery (Ajax) - rickygri</title>
      <link>https://snipplr.com/view/66642/post-form-with-jquery-ajax</link>
      <description>&lt;p&gt;This send any value via POST to a PHP page. It is done with AJAX, so the POST return can be used on the same page as the submit&lt;/p&gt;</description>
      <pubDate>Fri, 10 Aug 2012 18:48:15 UTC</pubDate>
      <guid>https://snipplr.com/view/66642/post-form-with-jquery-ajax</guid>
    </item>
    <item>
      <title>(JavaScript) POST form with javascript (Non-Ajax) - rickygri</title>
      <link>https://snipplr.com/view/66619/post-form-with-javascript-nonajax</link>
      <description>&lt;p&gt;This javascript function takes the URL of the target page and an associative array of name/values paires and POSTs the data to the supplied URL by dynamically creating a form and then submitting it.&lt;/p&gt;</description>
      <pubDate>Fri, 10 Aug 2012 01:21:38 UTC</pubDate>
      <guid>https://snipplr.com/view/66619/post-form-with-javascript-nonajax</guid>
    </item>
    <item>
      <title>(PHP) List Custom Post Type anywhere - i-am-andy</title>
      <link>https://snipplr.com/view/65825/list-custom-post-type-anywhere</link>
      <description>&lt;p&gt;Useful for adding Custom Post types to navigation this will list all custom post type posts&lt;/p&gt;</description>
      <pubDate>Wed, 27 Jun 2012 07:52:58 UTC</pubDate>
      <guid>https://snipplr.com/view/65825/list-custom-post-type-anywhere</guid>
    </item>
    <item>
      <title>(PHP) Limit WordPress the_content by words - crypticsoft</title>
      <link>https://snipplr.com/view/65744/limit-wordpress-thecontent-by-words</link>
      <description>&lt;p&gt;I need this function all too often and figured I'd share it. Limit the_content() by word limit by using built in WordPress functions.&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jun 2012 02:14:14 UTC</pubDate>
      <guid>https://snipplr.com/view/65744/limit-wordpress-thecontent-by-words</guid>
    </item>
    <item>
      <title>(PHP) WordPress Query Taxonomy by ID - crypticsoft</title>
      <link>https://snipplr.com/view/63640/wordpress-query-taxonomy-by-id</link>
      <description>&lt;p&gt;When you create a custom post type and need to query by ID then you can pass in the 'field' and the 'terms' with the ID for that post type.&lt;/p&gt;</description>
      <pubDate>Thu, 01 Mar 2012 00:09:18 UTC</pubDate>
      <guid>https://snipplr.com/view/63640/wordpress-query-taxonomy-by-id</guid>
    </item>
    <item>
      <title>(PHP) Wordpress Custom Post Type : POST ID in post url - nerdsane</title>
      <link>https://snipplr.com/view/63478/wordpress-custom-post-type--post-id-in-post-url</link>
      <description>&lt;p&gt;so you want to have your url structure like :&#13;
yourdomain.com/post-type/286&#13;
&#13;
add the following snippet to your functions.php and change the post-type names where appropriate&lt;/p&gt;</description>
      <pubDate>Tue, 21 Feb 2012 22:29:29 UTC</pubDate>
      <guid>https://snipplr.com/view/63478/wordpress-custom-post-type--post-id-in-post-url</guid>
    </item>
    <item>
      <title>(ActionScript 3) Simple Facebook Using GraphAPI_Web.Swc In As3 - Matias</title>
      <link>https://snipplr.com/view/63044/simple-facebook-using-graphapiwebswc-in-as3</link>
      <description>&lt;p&gt;a handy class to manage facebook connections using as3&lt;/p&gt;</description>
      <pubDate>Sat, 04 Feb 2012 02:27:18 UTC</pubDate>
      <guid>https://snipplr.com/view/63044/simple-facebook-using-graphapiwebswc-in-as3</guid>
    </item>
    <item>
      <title>(JavaScript) get GET and POST variables in javascript - FatFolderDesigner</title>
      <link>https://snipplr.com/view/62892/get-get-and-post-variables-in-javascript</link>
      <description>&lt;p&gt;Usually when working with form you use a server to handle it, and if your doing it entirely in javascript no reload is required, but what if you wanted to take the information and use it in a javascript on another page, completely client side. I had that problem, and found this solution.&#13;
&#13;
First is how to get GET variables in javascript, it works by breaking down the URL location with a regular expression giving you a variable that behaves like the PHP $_GET variable.&#13;
&#13;
Second is for POST variables and, unfortunately requires a server side script to work since javascript has no way to acces the POSt on it's own. The code below is for PHP, but should work for any language, it is also untested as I was really aiming for GET at the time.&#13;
&#13;
And questions, comments, or concerns let me know here or at the link, you'll find a bit more information this there as well.&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jan 2012 09:43:54 UTC</pubDate>
      <guid>https://snipplr.com/view/62892/get-get-and-post-variables-in-javascript</guid>
    </item>
    <item>
      <title>(PHP) Top Posts:  Custom Post Type/Taxonomy by Comment Count - lswilson</title>
      <link>https://snipplr.com/view/62665/top-posts--custom-post-typetaxonomy-by-comment-count</link>
      <description>&lt;p&gt;WordPress top posts: custom post type / taxonomy&#13;
Ordered by comment count&lt;/p&gt;</description>
      <pubDate>Fri, 20 Jan 2012 08:36:34 UTC</pubDate>
      <guid>https://snipplr.com/view/62665/top-posts--custom-post-typetaxonomy-by-comment-count</guid>
    </item>
    <item>
      <title>(PHP) Wordpress register Custom Post Type and Custom Taxonomy - i-am-andy</title>
      <link>https://snipplr.com/view/62167/wordpress-register-custom-post-type-and-custom-taxonomy</link>
      <description>&lt;p&gt;Register a Custom Post Type and a Custom Taxonomy in Wordpress&lt;/p&gt;</description>
      <pubDate>Thu, 29 Dec 2011 23:26:58 UTC</pubDate>
      <guid>https://snipplr.com/view/62167/wordpress-register-custom-post-type-and-custom-taxonomy</guid>
    </item>
    <item>
      <title>(PHP) get Custom post page name - hernanvionnet</title>
      <link>https://snipplr.com/view/61141/get-custom-post-page-name</link>
      <description>&lt;p&gt;Custom post page name&lt;/p&gt;</description>
      <pubDate>Thu, 24 Nov 2011 08:59:05 UTC</pubDate>
      <guid>https://snipplr.com/view/61141/get-custom-post-page-name</guid>
    </item>
    <item>
      <title>(PHP) Wordpress if statement - custom post type - verticalgrain</title>
      <link>https://snipplr.com/view/59951/wordpress-if-statement--custom-post-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Oct 2011 15:36:03 UTC</pubDate>
      <guid>https://snipplr.com/view/59951/wordpress-if-statement--custom-post-type</guid>
    </item>
    <item>
      <title>(PHP) Wordpress register custom post type - maxxscho</title>
      <link>https://snipplr.com/view/59702/wordpress-register-custom-post-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 13 Oct 2011 00:10:12 UTC</pubDate>
      <guid>https://snipplr.com/view/59702/wordpress-register-custom-post-type</guid>
    </item>
    <item>
      <title>(PHP) Custom post type tags/categories archive page - IronMANro</title>
      <link>https://snipplr.com/view/58834/custom-post-type-tagscategories-archive-page</link>
      <description>&lt;p&gt;add this in functions.php&lt;/p&gt;</description>
      <pubDate>Tue, 20 Sep 2011 17:24:30 UTC</pubDate>
      <guid>https://snipplr.com/view/58834/custom-post-type-tagscategories-archive-page</guid>
    </item>
    <item>
      <title>(PHP) Get Posts from Custom Post Type - i-am-andy</title>
      <link>https://snipplr.com/view/58108/get-posts-from-custom-post-type</link>
      <description>&lt;p&gt;Get posts from a Custom Post Type&lt;/p&gt;</description>
      <pubDate>Tue, 23 Aug 2011 22:22:10 UTC</pubDate>
      <guid>https://snipplr.com/view/58108/get-posts-from-custom-post-type</guid>
    </item>
    <item>
      <title>(PHP) Wordpress - Multiple Post Types in Loop - cpres</title>
      <link>https://snipplr.com/view/57496/wordpress--multiple-post-types-in-loop</link>
      <description>&lt;p&gt;add this to functions.php and you won't have to mess with the index page.&lt;/p&gt;</description>
      <pubDate>Tue, 02 Aug 2011 07:21:04 UTC</pubDate>
      <guid>https://snipplr.com/view/57496/wordpress--multiple-post-types-in-loop</guid>
    </item>
    <item>
      <title>(C) HTTP POST from Arduino (WiFly Library) - parkerkrhoyt</title>
      <link>https://snipplr.com/view/57138/http-post-from-arduino-wifly-library</link>
      <description>&lt;p&gt;This snippet will send an HTTP POST from an Arduino using the WiFly library.  The library is in early alpha, and is a port from the ethernet shield library.  The code here should work with either.  The critical part is the size of the data to send, and the line-breaks in the right places.&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2011 06:16:44 UTC</pubDate>
      <guid>https://snipplr.com/view/57138/http-post-from-arduino-wifly-library</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Post tinyurl to Twitter via Twitter webpage - adrianparr</title>
      <link>https://snipplr.com/view/56879/as3-post-tinyurl-to-twitter-via-twitter-webpage</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2011 01:28:06 UTC</pubDate>
      <guid>https://snipplr.com/view/56879/as3-post-tinyurl-to-twitter-via-twitter-webpage</guid>
    </item>
    <item>
      <title>(PHP) Handle all POST variables in a loop - nebojsac</title>
      <link>https://snipplr.com/view/56575/handle-all-post-variables-in-a-loop</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jul 2011 00:37:11 UTC</pubDate>
      <guid>https://snipplr.com/view/56575/handle-all-post-variables-in-a-loop</guid>
    </item>
    <item>
      <title>(JavaScript) Ajax POST Request - devnull69</title>
      <link>https://snipplr.com/view/56006/ajax-post-request</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Jul 2011 22:10:50 UTC</pubDate>
      <guid>https://snipplr.com/view/56006/ajax-post-request</guid>
    </item>
    <item>
      <title>(jQuery) Close a fancybox ON form submit and BEFORE processing with ajax. - dropthenerd</title>
      <link>https://snipplr.com/view/55158/close-a-fancybox-on-form-submit-and-before-processing-with-ajax</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 11 Jun 2011 11:35:53 UTC</pubDate>
      <guid>https://snipplr.com/view/55158/close-a-fancybox-on-form-submit-and-before-processing-with-ajax</guid>
    </item>
    <item>
      <title>(PHP) WordPress register custom post type code - nathanbweb</title>
      <link>https://snipplr.com/view/53769/wordpress-register-custom-post-type-code</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 19 May 2011 05:21:32 UTC</pubDate>
      <guid>https://snipplr.com/view/53769/wordpress-register-custom-post-type-code</guid>
    </item>
    <item>
      <title>(PHP) PAGINACION DE POST WORDPRESS - serialk89</title>
      <link>https://snipplr.com/view/53767/paginacion-de-post-wordpress</link>
      <description>&lt;p&gt;Este cÃ³digo pagina los resultados de wordpress, segÃºn los parÃ¡metros que se le asignen a la clase WP_query.&lt;/p&gt;</description>
      <pubDate>Thu, 19 May 2011 04:06:52 UTC</pubDate>
      <guid>https://snipplr.com/view/53767/paginacion-de-post-wordpress</guid>
    </item>
    <item>
      <title>(PHP) Get custom post types inside a wordpress widget - hugosolar</title>
      <link>https://snipplr.com/view/53619/get-custom-post-types-inside-a-wordpress-widget</link>
      <description>&lt;p&gt;this creates a function inside a widget object to create a dropdown menu with all the custom post types created in wordpress functions.&lt;/p&gt;</description>
      <pubDate>Mon, 16 May 2011 22:38:38 UTC</pubDate>
      <guid>https://snipplr.com/view/53619/get-custom-post-types-inside-a-wordpress-widget</guid>
    </item>
    <item>
      <title>(PHP) Wordpress - Recent Post - serialk89</title>
      <link>https://snipplr.com/view/53018/wordpress--recent-post</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 05 May 2011 01:23:07 UTC</pubDate>
      <guid>https://snipplr.com/view/53018/wordpress--recent-post</guid>
    </item>
    <item>
      <title>(PHP) Thesis: change teaser and post byline - psteinweber</title>
      <link>https://snipplr.com/view/52747/thesis-change-teaser-and-post-byline</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 28 Apr 2011 19:59:32 UTC</pubDate>
      <guid>https://snipplr.com/view/52747/thesis-change-teaser-and-post-byline</guid>
    </item>
    <item>
      <title>(PHP) Query any Post Type anywhere - zealmurapa</title>
      <link>https://snipplr.com/view/52474/query-any-post-type-anywhere</link>
      <description>&lt;p&gt;Query any Post Type anywhere&lt;/p&gt;</description>
      <pubDate>Fri, 22 Apr 2011 18:07:26 UTC</pubDate>
      <guid>https://snipplr.com/view/52474/query-any-post-type-anywhere</guid>
    </item>
    <item>
      <title>(PHP) post thumbnail function and display as background if function exists - zealmurapa</title>
      <link>https://snipplr.com/view/52318/post-thumbnail-function-and-display-as-background-if-function-exists</link>
      <description>&lt;p&gt;post thumbnail function and display as background if function exists&lt;/p&gt;</description>
      <pubDate>Tue, 19 Apr 2011 21:41:26 UTC</pubDate>
      <guid>https://snipplr.com/view/52318/post-thumbnail-function-and-display-as-background-if-function-exists</guid>
    </item>
    <item>
      <title>(PHP) Wordpress pre-populate main content with content, restrict to post type - adambundy</title>
      <link>https://snipplr.com/view/52288/wordpress-prepopulate-main-content-with-content-restrict-to-post-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Apr 2011 04:51:13 UTC</pubDate>
      <guid>https://snipplr.com/view/52288/wordpress-prepopulate-main-content-with-content-restrict-to-post-type</guid>
    </item>
    <item>
      <title>(PHP) Wordpress: Get GUID from page title - prwhitehead</title>
      <link>https://snipplr.com/view/52207/wordpress-get-guid-from-page-title</link>
      <description>&lt;p&gt;Dynamically get the guid of your a post from its post title (with wordpress caching)&lt;/p&gt;</description>
      <pubDate>Sun, 17 Apr 2011 01:18:15 UTC</pubDate>
      <guid>https://snipplr.com/view/52207/wordpress-get-guid-from-page-title</guid>
    </item>
    <item>
      <title>(PHP) Form Post using CURL in php - kumar_sekhar</title>
      <link>https://snipplr.com/view/52059/form-post-using-curl-in-php</link>
      <description>&lt;p&gt;Simply define your POSTURL and POSTVARS in name = value string format. It will post the form.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Apr 2011 15:19:48 UTC</pubDate>
      <guid>https://snipplr.com/view/52059/form-post-using-curl-in-php</guid>
    </item>
    <item>
      <title>(PHP) Contar posts en un custom post type - linkmoises</title>
      <link>https://snipplr.com/view/51938/contar-posts-en-un-custom-post-type</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 11 Apr 2011 21:49:48 UTC</pubDate>
      <guid>https://snipplr.com/view/51938/contar-posts-en-un-custom-post-type</guid>
    </item>
    <item>
      <title>(jQuery) Post array of multiple checkbox values to php - dsoms</title>
      <link>https://snipplr.com/view/51655/post-array-of-multiple-checkbox-values-to-php</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 06 Apr 2011 17:34:23 UTC</pubDate>
      <guid>https://snipplr.com/view/51655/post-array-of-multiple-checkbox-values-to-php</guid>
    </item>
    <item>
      <title>(PHP) Perfect cURL Function - frederichoule</title>
      <link>https://snipplr.com/view/51425/perfect-curl-function</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Apr 2011 14:09:39 UTC</pubDate>
      <guid>https://snipplr.com/view/51425/perfect-curl-function</guid>
    </item>
    <item>
      <title>(Django) request: get multiple values | Django - magicrebirth</title>
      <link>https://snipplr.com/view/51125/request-get-multiple-values--django</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 26 Mar 2011 00:27:34 UTC</pubDate>
      <guid>https://snipplr.com/view/51125/request-get-multiple-values--django</guid>
    </item>
    <item>
      <title>(PHP) Wordpress : Custom columns for edit / post views in the admin - crypticsoft</title>
      <link>https://snipplr.com/view/49895/wordpress--custom-columns-for-edit--post-views-in-the-admin</link>
      <description>&lt;p&gt;The code references a custom post type (mysite_listings) and adds custom columns for editing the listings in the admin. This adds custom fields onto the edit / list views.&#13;
&#13;
Note: You will want to change instances of "mysite_listings" with your own post type as well update the column I've defined to match your own.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Mar 2011 07:25:23 UTC</pubDate>
      <guid>https://snipplr.com/view/49895/wordpress--custom-columns-for-edit--post-views-in-the-admin</guid>
    </item>
    <item>
      <title>(PHP) Wordpress : Register Post Type and Taxonomy - crypticsoft</title>
      <link>https://snipplr.com/view/49893/wordpress--register-post-type-and-taxonomy</link>
      <description>&lt;p&gt;Example shows how to  register post types for : &#13;
* Listings (defined as 'mysite_listings' with the rewrite slug 'lookup')&#13;
* Then registers the 'usa_states' taxonomy to the mysite_listings post type.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Mar 2011 07:15:27 UTC</pubDate>
      <guid>https://snipplr.com/view/49893/wordpress--register-post-type-and-taxonomy</guid>
    </item>
  </channel>
</rss>
