charlene2021
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search Not WorkingAnyone? Pretty please.
Forum: Fixing WordPress
In reply to: Hiding SubPages QuestionI swear I thought i put depth=1 in … oh I did but it still doesn’t work like it should. I am thinking it has to do with the way the gallery plugin I am using is outputting things (https://myopaline.net/gallery/)
Forum: Fixing WordPress
In reply to: php shortcut to link to imagethanks very much
Forum: Fixing WordPress
In reply to: Show Something Only On Home PageThat works as far as no error msg thanks but I am still able to see welcome message when navigating through entries.
Forum: Plugins
In reply to: Comment Plugger Plugin QuestionI tried but to no avail.
I should fine that person using his and see what theyForum: Plugins
In reply to: Display Photo DimensionsAny PHP gurus know?
Forum: Fixing WordPress
In reply to: Prev Month Archive Goes To Currentnevermind
Forum: Plugins
In reply to: Insert Image Pluginnevermind, never used the upload area on the post page so didn’t know I could already do the thumbnail
Forum: Plugins
In reply to: Insert Image PluginWhat I am really wanting is a way to browse images in a folder and pick images I want to post and the option to resize and/or make thumbnails all on the post page instead of having to go to a plugin’s options page.
Forum: Fixing WordPress
In reply to: Prev Month Archive Goes To CurrentAlso my Category page is doing something similar. I click on photopost and it shows me all my posts
Forum: Plugins
In reply to: Display Photo DimensionsI see this on php.net
<?php $size = getimagesize("https://www.example.com/gifs/logo.gif"); // if the file name has space in it, encode it properly $size = getimagesize("https://www.example.com/gifs/lo%20go.gif"); ?>
but it would be a pain to have to put the url in every time
Forum: Themes and Templates
In reply to: Page W/ One Category of Posts<?php if (is_archive()) { query_posts("cat=-10"); } ?>
Did what I wanted for the archives page.
Forum: Themes and Templates
In reply to: Page W/ One Category of PostsI’ll go take a look. Thanks.
Forum: Themes and Templates
In reply to: Page W/ One Category of PostsI’m good at confusing people especially when I am confused. You’re right just use that line to exclude that category from showing up on side but that category will still show up in the monthly archives page. So what I should have asked is how do I keep that category from showing up on the monthly archives page. https://www.sugar-buzz.net/2007/06/
Forum: Themes and Templates
In reply to: Page W/ One Category of Posts<?php wp_list_cats(‘exclude=10, 15’); ?>
I used this line of code but since I am using this plugin https://ryowebsite.com/?cat=11 to keep this category from showing on the archives page the link doesn’t show up. How would I keep this category from showing on the archives page without that plugin?