php初心者です。
とあるワードプレスのテキストに、下記のように記述する旨の指示がありました。
<span class="sep">投稿日:<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<time class="entry-date" datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate="<?php the_time( 'Y-m-d' ); ?>">
<?php the_time( get_option( 'date_format' ) ); ?>
</time>
Netbeansで上記の記述を行ったところ、
Bad value " " for attribute "href" on element "a": DOUBLE_WHITESPACE in PATH.
Syntax of IRI reference:
Any URL. For example: '/hello', '#canvas', or 'http://example.org/'. Characters should be represented in NFC and spaces should be escaped as '%20'.
Bad value " " for attribute "datetime" on element "time": The literal did not satisfy the date format.
Syntax of date or time:
(This format deviates from the spec draft.) An ISO 8601 date (i.e. 'YYYY-MM-DD'.), time (i.e. 'hh:mm' optionally followed by ':ss' optionally followed by '.' and digits) optionally with a time zone designator (i.e. either 'Z', '+hh:mm' or '-hh:mm') or both date and time separated by 'T'. Examples: '1996-01-01T12:05:25', '1996-01-01', '12:05:25', '1996-01-01T12:05:25.6-02:00'
等のメッセージが出現します。phpの記述として、テキストの指示は適切なものなのでしょうか?
改めるならば、どのようにすべきでしょうか?
お礼
ご回答感謝いたします。 つたない読解力で警告文を読む限り、古い表記法のように読み取れたものでして。 大文字で4文字、小文字で2文字という書きかたは、普通に使われるものなのですね。 ありがとうございました。