New to WordPress Unable to edit content
-
Basically I’m currently hired at a company that believes that I’m capable of modifying their website’s content (to an extent, I was able to through WordPress’ online editor and features).
However, I am now finding myself stumped as there was a person who built this company their WordPress content + theme before I came along.
The website is: https://www.nycevents.com (the one I am trying to edit)
I tried editing the page through the online editor but to no avail.
Using FileZilla to login to their FTP, I came across a file that would be that same home page.What I’m trying to edit is:
<h3> WHETHER YOU ARE LOOKING FOR:</h3> <?php $post_args = array( 'category_name' => 'our-specials', 'post_status' => 'publish', 'posts_per_page' => -1, 'order' =>'ASC' ); $post_query = new WP_Query ($post_args); if($post_query->have_posts()) { echo '<ul class="sidebarUl">'; while($post_query->have_posts()) { $post_query->the_post(); ?> <li><?php the_title();?></li> <?php
I’m looking to edit the text underneath “WHETHER YOU ARE LOOKING FOR:”
However, I don’t understand that bit of code at all — where to find it, how to access it without potentially screwing up the entirety of the code.
TL;DR my question is: How do I edit that bit of code (the content) while keeping the code and only modifying the content?
I have FTP access, MySQL access, WordPress Admin access.
And I’m not sure what measure to take to edit that particular bit of content.
If possible, I’d like a response with perhaps the program that’s better suited for finding these types of files/content for future editing.
(I was thinking of getting Dreamweaver, but I’m not sure if that would solve the problem).
Thank you for the support WordPress community and looking forward for some insightful solutions.
- The topic ‘New to WordPress Unable to edit content’ is closed to new replies.