Title: linger668's Replies | WordPress.org

---

# linger668

  [  ](https://wordpress.org/support/users/linger668/)

 *   [Profile](https://wordpress.org/support/users/linger668/)
 *   [Topics Started](https://wordpress.org/support/users/linger668/topics/)
 *   [Replies Created](https://wordpress.org/support/users/linger668/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/linger668/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/linger668/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/linger668/engagements/)
 *   [Favorites](https://wordpress.org/support/users/linger668/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 37 total)

1 [2](https://wordpress.org/support/users/linger668/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/linger668/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/linger668/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields: Limiter Field] Can we add something to show how many characters I can still write](https://wordpress.org/support/topic/can-we-add-something-to-show-how-many-characters-i-can-still-write/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/can-we-add-something-to-show-how-many-characters-i-can-still-write/#post-5962392)
 * Yes, indeed, thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] How can I save the data to my specified database](https://wordpress.org/support/topic/how-can-i-save-the-data-to-my-specified-database/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/how-can-i-save-the-data-to-my-specified-database/#post-5920595)
 * Acturally, what I want is get the data from the input, I tried this, but still
   doesn’t work, can you help me to see where is my mistake?
 *     ```
       add_action('wpcf7_before_send_mail', 'my_conversion');
   
       function my_conversion($form)
       {
       	global $wpdb;
       	$submission = WPCF7_Submission::get_instance();
   
       	if ( $submission ) {
           	$posted_data = $submission->get_posted_data();
       	}
       	$email = $posted_data["email-promo"];
   
       	$query = 'SELECT pro_mail from newsletter where pro_mail=' . trim($email) ;
       	$record = $wpdb->get_results($query);
       	if (count($record) < 1) {
       		$wpdb->insert( 'newsletter', array('pro_mail' => $email), array('%s'));}
       }
       ```
   
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Simple Pagination] Very simple to use](https://wordpress.org/support/topic/very-simple-to-use-10/)
 *  [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/very-simple-to-use-10/#post-7917788)
 * My problem is that it doesn’t show the other page links
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Simple Pagination] Very simple to use](https://wordpress.org/support/topic/very-simple-to-use-10/)
 *  [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/very-simple-to-use-10/#post-7917787)
 * Hello, can you help me check my code? Is there some problems?
 *     ```
       $paged = get_query_var('paged') ? get_query_var('paged') : 1;
       	$query_arguments = array(
               'post_type' => $atts['_type'],
               'post_status' => 'publish',
               'orderby' => 'title',
       		'order' => 'ASC',
         		'ignore_sticky_posts'=> 1,
       		'showposts' => $atts['postsPerPage'],
       		'paged' => $paged,
       		'meta_key' => 'initial_letter',
       		'meta_value' => $letters,
           );
       	$trombinoscope_query = new WP_Query($query_arguments);
       	$initials_letter = '0';
           // Display Category Posts
           $html = '<div class="trombinoscope_whole">';
       	$index = 1; $current_page = 1;
           if ($trombinoscope_query->have_posts()) : while ($trombinoscope_query->have_posts()) : $trombinoscope_query->the_post();
       		$post_title = get_the_title();
       		if ($post_title) {
       			$current_letter = $post_title[0];
       		}
       		if ($current_letter != $initials_letter) :
       		$html .= '<div class="trombinoscope_list">
       		<p>'.$current_letter.'</p>
       		</div>';
       		endif;
       	 	$initials_letter = $current_letter;
       		$html .= generate_post_html();
   
               endwhile;
       if(function_exists('wp_simple_pagination')) {
           $html .= wp_simple_pagination();
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] About the databese restore](https://wordpress.org/support/topic/about-the-databese-restore/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/about-the-databese-restore/#post-5807903)
 * I reinstall it, and using the lastest version; there are no this problems. But
   I can’t find the template ID anymore. It’s changed by url. And I can’t use it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] About the databese restore](https://wordpress.org/support/topic/about-the-databese-restore/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/about-the-databese-restore/#post-5807823)
 * And there is another line,
    `Strict Standards: call_user_func_array() expects
   parameter 1 to be a valid callback, non-static method PHPPC::register_admin_menu()
   should not be called statically in /wp-includes/plugin.php on line 505`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] Fetch Tweets: Not authorized.](https://wordpress.org/support/topic/fetch-tweets-not-authorized/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/fetch-tweets-not-authorized/#post-5671073)
 * It doesn’t exist the code number, only “Fetch Tweets: Not authorized”.
 * Only one twitter profile shows that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] Will it collapse when I search a lot of twitter?](https://wordpress.org/support/topic/will-it-collapse-when-i-search-a-lot-of-twitter/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/will-it-collapse-when-i-search-a-lot-of-twitter/#post-5670975)
 * How to set the cache? I didn’t set rule, I just use it like what you said to 
   me:
 * fetchTweets( array( ‘screen_name’ => $tag->name, ‘template’ => ‘a5f856deb3b275db7a23656bc01b2556’));
 * Like this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] Fetch Tweets: Not authorized.](https://wordpress.org/support/topic/fetch-tweets-not-authorized/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/fetch-tweets-not-authorized/#post-5670974)
 * Most of the Twitters’ profiles show, only one line is written this message.
 * I checked the setting, yes. Like you said.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] how to show tweets by tweet id](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/#post-5618257)
 * Thanks, it works now
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] how to show tweets by tweet id](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/#post-5618219)
 * Thanks for your reply, I mean “Tweet Text,” and “tweet media”.
    Actually I tried
   to use twiiter api, andI can’t get tweet media when media have videos.
 * And for fetch_tweets by tweet id, it doesn’t work for videos. I have already 
   set the good values.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] how to show tweets by tweet id](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/how-to-show-tweets-by-tweet-id/#post-5618155)
 * Yes, it works, thank you. But how to display the tweets title, and tweets media?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] How to display the custom values Taxonomies](https://wordpress.org/support/topic/how-to-display-the-custom-values-taxonomies/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/how-to-display-the-custom-values-taxonomies/#post-5489373)
 * I didn’t add the post type. How can I check the url?
    And do you know how can
   I get all the values of the taxonomy I created? e.g. get_the_tags().
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] About the tags part](https://wordpress.org/support/topic/about-the-tags-part/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/about-the-tags-part/#post-5435700)
 * OK, Just like this, I have 500 screenname, I want to show their profile on my
   blog, Can you give me a good idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fetch Tweets] About the tags part](https://wordpress.org/support/topic/about-the-tags-part/)
 *  Thread Starter [linger668](https://wordpress.org/support/users/linger668/)
 * (@linger668)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/about-the-tags-part/#post-5435695)
 * Actually, the results which I want to get , is I have a list from posts tags(
   the screennames of twitters), I want to show it in the sidebar, but I don’t want
   to add the rules one by one screenname; do you have an easy way , like use add
   rules by list, but I don’t know how to use this option. Can you help me to figure
   out?

Viewing 15 replies - 1 through 15 (of 37 total)

1 [2](https://wordpress.org/support/users/linger668/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/linger668/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/linger668/replies/page/2/?output_format=md)