以下のコードを使用してlatest post
from sub-domain
toを表示しています --domain
これがcode
私が使用しているものです ---
post_title
30文字くらいの制限文字を表示する必要があります
これがコードです..
function render_my_recent_posts( $numberposts = 5 ) { ?>
<ul>
<?php
$args = array( 'numberposts' => '5' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ) {
echo '<li><img src="/images/default-user-avatar-3.jpg"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
}
?>
</ul><?php
}
助けはありますか?
ありがとうございました