Title: boydigital's Replies | WordPress.org

---

# boydigital

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

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

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [apply different formatting to the first post's page](https://wordpress.org/support/topic/apply-different-formatting-to-the-first-posts-page/)
 *  Thread Starter [boydigital](https://wordpress.org/support/users/boydigital/)
 * (@boydigital)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/apply-different-formatting-to-the-first-posts-page/#post-1867144)
 * Once again, thank you alchymyth for providing the information.
 * With some creative liberties to the code at the link supplied above, I found 
   a recipe that works. I’ve attached my solution below. The most difficult aspect
   was finding how to have the link actually show up within my <div>.
 * Case solved.
 *     ```
       <div class="pagination clearfix cew_buttonbox">
               <table class="cew_prevnextbox3">
       		<tr>
       		<td style="float:left"><?php if(get_adjacent_post(false, '', true)) { echo previous_post_link('%link', '<div class="cew_button">< Older Post</div>'); }
       else { echo '&nbsp;'; } ; ?>
       </td>
       		<td style="float:right"><?php if(get_adjacent_post(false, '', false)) { echo next_post_link('%link', '<div class="cew_button">Newer Post ></div>'); }
       else { echo '&nbsp;'; } ; ?>
       </td>
       		</tr>
       		</table>
           </div>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [apply different formatting to the first post's page](https://wordpress.org/support/topic/apply-different-formatting-to-the-first-posts-page/)
 *  Thread Starter [boydigital](https://wordpress.org/support/users/boydigital/)
 * (@boydigital)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/apply-different-formatting-to-the-first-posts-page/#post-1867034)
 * Very interesting. Thank you alchymyth.
 * I believe there is a solution in there somewhere. I will play with this tonight
   and report back on my success or failure soon.

Viewing 2 replies - 1 through 2 (of 2 total)