Group Posts by First Letter of Title

once up a time i did a client project where i had to have archives by first letter. thinking back i’m wondering if shouldn’t have just created a hidden taxonomy and then saved the first letter as a term in that taxonomy. anyway, here’s what i actually did: /* * Function Create Array of Letters … Read more

Manually delete post from database

Drop this into a file in your plugin directory and you should be able to do this from your WP installation using a query string. /* Plugin Name: Delete Specific Post Description: Rid the post forever! Version: 0.1 Author: WPSE License: GPL2 */ add_filter(‘query_vars’, ‘delete_post_query_var’); function delete_post_query_var($vars){ $vars[] = ‘delete_post’; return $vars; } add_action(‘admin_init’, ‘manually_delete_post’, … Read more

Attach pdf file to custom post type

Here this is my code which i used in my wordpress site in custom post type for adding the pdf to the post and its work for me try to change its and use it. Hope it will help function add_custom_meta_boxes() { add_meta_box(‘wp_custom_attachment’, ‘Hotel Brochure’, ‘wp_custom_attachment’, ‘hotel_post’, ‘normal’, ‘high’); } add_action(‘add_meta_boxes’, ‘add_custom_meta_boxes’); function wp_custom_attachment() { … Read more

Delete posts from a post type automatically via Cron

Although I do not understand the motivation for truncating posts, I think this exercise is valuable for you to understand how to use cron + WordPress. Create a function to truncate posts This can be used for both methods below WP-cron or UNIX cron. function foobar_truncate_posts(){ global $wpdb; # Set your threshold of max posts … Read more

Display content from a specific category

The argument isn’t category, it is cat. Your query fails because you are using an argument that doesn’t exist. $args = array( ‘post_type’ => ‘post’ , ‘orderby’ => ‘date’ , ‘order’ => ‘DESC’ , ‘posts_per_page’ => 6, ‘cat’ => ‘3’, ‘paged’ => get_query_var(‘paged’), ‘post_parent’ => $parent ); $q = new WP_Query($args); if ( $q->have_posts() ) … Read more

Counting words in a post

How hard did you search? I searched Google for “wordpress count words in post” and found a function for it in the first result! Put this in functions.php: function prefix_wcount(){ ob_start(); the_content(); $content = ob_get_clean(); return sizeof(explode(” “, $content)); } Then call it in the template like this: <?php echo prefix_wcount(); ?>

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)