DNac
DNac

Reputation: 2783

PHP part of text to be bold

I have the following code:

<div class="alignleft"><?php next_posts_link(esc_html__('&laquo; Older Posts','OSC')) ?></div>

Is there any way how can I force the text "Older Posts" to be bold in this code rather than use external css file?

Upvotes: 1

Views: 797

Answers (2)

Paramore
Paramore

Reputation: 1313

 <div class="align left" ><b><?php next_posts_link(esc_html__('&laquo; Older Posts','OSC')) ?></b></div>

Upvotes: 2

potashin
potashin

Reputation: 44601

<div class="align left" style="font-weight:bold"><?php next_posts_link(esc_html__('&laquo; Older Posts','OSC')) ?></div>

Upvotes: 2

Related Questions