Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8097321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:43:19+00:00 2026-06-05T21:43:19+00:00

I get the error Warning: printf() [function.printf]: Too few arguments Looking at the code

  • 0

I get the error

Warning: printf() [function.printf]: Too few arguments 

Looking at the code I see:

function twentyten_posted_on() {
    printf( 
        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
            get_permalink(),
            esc_attr( get_the_time() ),
            get_the_date()
        )
    );
}

What seems to be the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T21:43:21+00:00Added an answer on June 5, 2026 at 9:43 pm

    The printf() and sprintf() functions are identical; the only difference in their behaviour is that one is a statement (it does something) and the other is a function expression (it evaluates to something). (See this StackOverflow answer for a description of the difference.) They both take a format as the first argument, then zero or more additional arguments as replacement strings for special characters within the format string.

    Your sprintf() function is well formed. You’ve numbered your format strings, you have replacement strings as arguments to match the format strings. All is good.

    But consider what the printf() function is doing. It gets a string, which happens to be the output of sprintf(). If sprintf()‘s contains a % character, then printf() would need a replacement string which is not included in your code.

    As others have said, you can probably leave out the sprintf() from your code. But you should also understand WHY this is happening.

    For example:

    $fmt = "%%d\n";
    printf( $fmt );
    printf( sprintf($fmt) );
    printf( sprintf($fmt), "Hello world" );
    

    The first printf works, and prints a “%d”. The second printf fails because its format string implies that it should have a replacement string, but none is provided. The third one prints a zero, because when you try to evaluate “Hello world” as a decimal integer (%d), that’s what you get.

    Look at your variables, and you’ll probably find that at least one of them has a % character in it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get the following error within Magento CE 1.6.1.0 Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot
I get the following error running a pattern matching validation: ErrorException [ Warning ]:
I get the following error when compiling my app. warning: class 'ConfigureViewController' does not
I get this warning in my error logs and wanted to know how to
I get error: ORA-06575: Package or function GET_CONC_NAMES is in an invalid state When
I use the following jquery statements but i get error in this function onGetDataSuccess(result)
I get the following error when trying to upload a .JPG file. Warning: getimagesize()
I'm getting this PHP warning in my error_log and want to get it fixed.
Why I get error with this query on my live server but not on
I have this query and I get error Operand should contain 1 column(s), whats

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.